1
因此,我試圖構建一個非常小的shell腳本來抓取當前播放的Spotify歌曲並返回歌曲在終端中的歌詞。從Shell中的Applescript中檢索變量
什麼工作
的AppleScript的回報/回聲曲目名稱到終端
我需要
幫我似乎無法來檢索的theArtist and theName
值applescript,在下面的curl命令中使用。
關於如何使這項工作的任何提示? :)
echo "tell application \"Spotify\"
set theTrack to current track
set theArtist to artist of theTrack
set theName to name of theTrack
end tell" | osascript
song=`curl -s "http://makeitpersonal.co/lyrics?artist=$theArtist&title=$theName"`
echo -e "$theArtist - $theName\n$song"
@ user2656127:不客氣,你的'curl'命令也有問題,這肯定會阻止歌詞檢索 - 請參閱我的更新;但是,不知道在線來源原則上有多好。 – mklement0
完美,謝謝! – user2656127