我有一个启动程序的辅助列表,如果我正在工作,我想启动这些程序。因此,我将这个 shell 脚本添加到了在 Ubuntu 上运行的系统的启动中。
echo "Do you want to start the start up applications[Y/n]?"
while read inputline
do
what="$inputline"
break
done
if [ "$what" == "Y" -o "$what" == "y" ]
then
. ~/bin/webstorm.sh &
workrave &
firefox &
. ~/bin/AptanaStudio3
fi
我不断收到这个错误,它一直在说类似[: Y: unexpected operator
的东西,并且从不启动程序。
免责声明:我不知道如何编写 shell 脚本。