Hi!
Is there any Linux-command that works like "dir C:\ /S /B" under MS-DOS? Or what do you think in implementing it on myself, would it be difficult?
klausi
This is a discussion on wanna get all directories in / within the Linux Programming forums, part of the Platform Specific Boards category; Hi! Is there any Linux-command that works like "dir C:\ /S /B" under MS-DOS? Or what do you think in ...
Hi!
Is there any Linux-command that works like "dir C:\ /S /B" under MS-DOS? Or what do you think in implementing it on myself, would it be difficult?
klausi
When I close my eyes nobody can see me...
Yes there is,
find / -type d
to find all directories
find /
to find all files, including pathname
alex
Last edited by alex; 02-26-2002 at 09:13 AM.
Or even just
ls -R
or is it
ls -r
I dunno - read the manual
Thank you all, itīs what I wanted.
klausi
When I close my eyes nobody can see me...