通知发送导致选项数量无效
我想这样做
while read line
do
echo $line;
notify-send $line;
done < "0.txt"
,其中 0.txt 是某个包含 10 行的文件
,但问题是
notify-send $line;
导致选项数量无效,并且
notify-send "aasdasdsd"
工作正常
I want to do this
while read line
do
echo $line;
notify-send $line;
done < "0.txt"
where 0.txt is some file with 10 rows
But the problem is
notify-send $line;
causes Invalid number of options, and
notify-send "aasdasdsd"
works just fine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
bash 在<之前执行Shell参数扩展 a href="http://www.gnu.org/software/bash/manual/bash.html#Word-Splitting">单词分割。
bash do Shell Parameter Expansion before Word Splitting.