我想做这个
while read line
do
echo $line;
notify-send $line;
done < "0.txt"其中0.txt是包含10行的某个文件
但问题是
notify-send $line;会导致无效的选项数量,并且
notify-send "aasdasdsd" 工作正常
发布于 2012-01-13 21:20:34
bash do Shell Parameter Expansion before Word Splitting.
notify-send "$line"https://stackoverflow.com/questions/8850995
复制相似问题