|
From: Martin G. <mar...@we...> - 2007-05-11 12:29:48
|
On May 11, 2007, at 2:11 PM, Bruce Smith wrote: > Can you try $(command) instead of backquotes? > > i.e. `ls` becomes: $(ls) Tried it on the find's for the devices: no change. Another test inside the booted initrd: / $ cat >bla.sh<<EOF #!/bin/sh bla=$(ls) echo $bla EOF / $ chmod 700 bla.sh / $ ./bla.sh / $ bla=$(ls) / $ echo $(bla) VERSION bin cd cdrom .... / $ Any idea? Martin |