|
From: Greg on 15 Sep 2005 06:48 how can I use ls -R and get the full name and path? ie ls -R /bin /etc ...
From: Nils O. Selåsdal on 15 Sep 2005 07:05 Greg wrote: > how can I use ls -R and get the full name and path? Consider using find. find /etc /bin
From: Måns Rullgård on 15 Sep 2005 14:22
"Nils O. Selýsdal" <NOS(a)Utel.no> writes: > Greg wrote: >> how can I use ls -R and get the full name and path? > Consider using find. > find /etc /bin In case you need the full ls functionality, do something like find /etc /bin | xargs ls -d -other-ls-options -- Mýns Rullgýrd mru(a)inprovide.com |