notify-send导致无效的选项数

Luk*_*kap 2 linux bash shell notifications

我想做这个

while read line
do
    echo $line;
    notify-send $line;
done < "0.txt"
Run Code Online (Sandbox Code Playgroud)

其中0.txt是10行的文件

但问题是

notify-send $line;
Run Code Online (Sandbox Code Playgroud)

导致选项数无效,以及

notify-send "aasdasdsd" 
Run Code Online (Sandbox Code Playgroud)

工作得很好