Bash: Dialog-command doesn't execute inside while loop -
if run dialog --title "titletext" --dselect /path/ 20 60
works fine. when put in while-loop echo
executed not dialog --title "titletext" --dselect /path/ 20 60
(see listing below).
repeat=true while $repeat echo "test do" dialog --title "titletext" --dselect /path/ 20 60 done
Comments
Post a Comment