notify-send导致无效的选项数

时间:2012-01-13 13:01:50

标签: linux bash shell notifications

我想这样做

while read line
do
    echo $line;
    notify-send $line;
done < "0.txt"

其中0.txt是一些包含10行的文件

但问题是

notify-send $line;

导致选项数无效,

notify-send "aasdasdsd" 

工作得很好

1 个答案:

答案 0 :(得分:7)

bash Shell Parameter Expansion之前执行Word Splitting

notify-send "$line"