这是我的代码:
alias radio='
if [ -e "$station" ]
then
open $station
else
say "I still don't know what your favorite radio station is sir. Would you mind giving me the link?"
echo "What is the link of your favorite station?"
read station
echo "station="$station"" >> ~/.fis/config
say "You can now try the command again."
fi'
代码运行到它要求链接的部分。当我向它提供链接时,我收到以下错误:
-bash: station= http://www.cidadefm.iol.pt/player/player.html ?: 没有这样的文件或目录
有谁知道可能出了什么问题?