Archaic wrote:
$ echo `ls` <snip correct output>$ echo ${ls}
[snip]
$ echo ${ls}
Erm. 'echo ${ls}' is different than 'echo $(ls)' The first is echo-ing a variable, the second is echoing the results of the command executed.
-- JH -- http://linuxfromscratch.org/mailman/listinfo/blfs-dev FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
