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

Popular posts from this blog

sql - MySQL - Finding Empty relations -

javascript - Why jQuery Select box change event is now working? -

date - Java 8 - Trying to convert String to LocalDateTime -