Thread: "ls | glade-3" not working
if i'm correct following script should open of glade files me... works if type them in hand...
code:ls | glade-3
in glade-3 man-page there's no mention of accepting filelist standard input. secondly accepts 1 file argument according synopsis, you'll have run loop start once each file.
if doesn't automatically background (i.e. stops @ first invocation of glade-3), can add & @ end.code:for file in *.glade; glade-3 "$file" done
oh , can on 1 line, handy interactive shellscode:for file in *.glade; glade-3 "$file" & done
code:for file in *.glade; glade-3 "$file"; done # or file in *.glade; glade-3 "$file" & done
Forum The Ubuntu Forum Community Ubuntu Specialised Support Development & Programming Programming Talk [SOLVED] "ls | glade-3" not working
Ubuntu
Comments
Post a Comment