Re: FVWM: reading a split configuration file

2013-12-06 Thread lee
bastian-fvwm-org-20121...@t6l.de writes: > On 05Dec13 11:00 +0100, lee wrote: >> | PipeRead 'for i in /bin/ls $HOME/.fvwm/*.fvwm; do echo Read $i; done' >> >> which seemed to read the contents of an executable file and tried to >> execute whatever it read as commands. That appears to be way too

Re: FVWM: reading a split configuration file

2013-12-06 Thread lee
Stuart Longland writes: > On 05/12/13 20:45, bastian-fvwm-org-20121...@t6l.de wrote: >> >> If you need alphabetical order try: >> PipeRead 'for i in $(echo $HOME/.fvwm/*.fvwm | sort) ; do echo Read $i; done' > > Or even: > PipeRead `ls -1 $HOME/.fvwm/*.fvwm | while read i; do echo Read $i; done`