浏览代码

Fixed handling trailing white space in track name

Thomas Buck 10 年前
父节点
当前提交
6e7a552390
共有 3 个文件被更改,包括 2 次插入2 次删除
  1. 二进制
      SongLength.scpt
  2. 二进制
      SongName.scpt
  3. 2
    2
      trackchange.sh

二进制
SongLength.scpt 查看文件


二进制
SongName.scpt 查看文件


+ 2
- 2
trackchange.sh 查看文件

@@ -4,7 +4,7 @@ lasttrack=`cat /Users/thomas/.lasttrack`
4 4
 host=`hostname`
5 5
 datum=`date`
6 6
 
7
-if [ "$1" != "$lasttrack" ]; then
7
+if [ "\"$1\"" != "$lasttrack" ]; then
8 8
     if [ "$1" != "" ]; then
9 9
         echo "<html><head><meta charset=\"utf-8\" /><title>xythobuz listened to...</title></head><body><pre>" > /Users/thomas/.tmpfile
10 10
         echo "Last song played on <b>${host}</b>'s iTunes:" >> /Users/thomas/.tmpfile
@@ -21,7 +21,7 @@ if [ "$1" != "$lasttrack" ]; then
21 21
         cat /Users/thomas/.trackhistory >> /Users/thomas/.tmpfile
22 22
         echo "</pre><p><a href="http://xythobuz.de">Return...</a></p></body></html>" >> /Users/thomas/.tmpfile
23 23
 
24
-        echo $1 > /Users/thomas/.lasttrack
24
+        echo \"$1\" > /Users/thomas/.lasttrack
25 25
         echo "<b>$1</b> by <b>$2</b> on <b>$3</b> at <i>${datum}</i>" >> /Users/thomas/.trackhistory
26 26
         tail -n 3 /Users/thomas/.trackhistory | tee /Users/thomas/.trackhistory
27 27
         

正在加载...
取消
保存