Oct 11, 2000 #1 anon Programmer Oct 11, 2000 2 US If I want a recursive listing of all directories starting from the current path (no files, directories only), what is the command? Thanks [sig][/sig]
If I want a recursive listing of all directories starting from the current path (no files, directories only), what is the command? Thanks [sig][/sig]
Oct 11, 2000 #2 rbobbitt Programmer Aug 17, 2000 566 US Hi, Try ls -dR Regards, [sig]<p>Russ<br><a href=mailto:bobbitts@hotmail.com>bobbitts@hotmail.com</a><br><a href=http://home.earthlink.net/~bobbitts>Bobbitt is in</a><br>[/sig] Upvote 0 Downvote
Hi, Try ls -dR Regards, [sig]<p>Russ<br><a href=mailto:bobbitts@hotmail.com>bobbitts@hotmail.com</a><br><a href=http://home.earthlink.net/~bobbitts>Bobbitt is in</a><br>[/sig]
Oct 11, 2000 Thread starter #3 anon Programmer Oct 11, 2000 2 US nope. did not work. [sig][/sig] Upvote 0 Downvote
Oct 11, 2000 #4 rbobbitt Programmer Aug 17, 2000 566 US Sorry, that was untested. Try this instead: find . -type d -print [sig]<p>Russ<br><a href=mailto:bobbitts@hotmail.com>bobbitts@hotmail.com</a><br><a href=http://home.earthlink.net/~bobbitts>Bobbitt is in</a><br>[/sig] Upvote 0 Downvote
Sorry, that was untested. Try this instead: find . -type d -print [sig]<p>Russ<br><a href=mailto:bobbitts@hotmail.com>bobbitts@hotmail.com</a><br><a href=http://home.earthlink.net/~bobbitts>Bobbitt is in</a><br>[/sig]
Oct 11, 2000 #5 ElgisRamon MIS Jun 14, 1999 606 US That's perfect! [tt]find . -type d -print [/tt] [sig][/sig] Upvote 0 Downvote