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