Dialog probleme

sewin

Entwickler
hallo,

weiss jemand warum das nicht klappt und was ich dagegen tun kann:


shibby='01 "hallo welt" 02 "hallo universum"'
dialog --title meintitle --menu meinmenu 20 50 10 $(echo -n $shibby)
 
Wie wärs damit:

Code:
shibby='01:"hallo welt":02:"hallo universum"'
OLD_IFS="$IFS"
IFS=':'
dialog --title meintitle --menu meinmenu 20 50 10 $shibby
IFS="$OLD_IFS"

Hope that helps...
 
Zurück
Oben