Prev: grep
Next: core dump
From: Greg on
how can I use ls -R and get the full name and path?

ie
ls -R /bin /etc ...


From: Nils O. Selåsdal on
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
"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
 | 
Pages: 1
Prev: grep
Next: core dump