通知发送导致选项数量无效

发布于 2024-12-26 13:01:11 字数 289 浏览 0 评论 0原文

我想这样做

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

埋葬我深情 2025-01-02 13:01:11

bash 在<之前执行Shell参数扩展 a href="http://www.gnu.org/software/bash/manual/bash.html#Word-Splitting">单词分割。

notify-send "$line"

bash do Shell Parameter Expansion before Word Splitting.

notify-send "$line"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文