On Sat, Nov 01, 2003 at 05:20:39PM -0800, Jeff Westman wrote: > I have a simple task that I am trying to do. Basically, I just want > to list out my directories on disk, and then chdir to each one, print > it out, and so on.
use File::Find; find sub { print "$File::Find::name\n" if -d }, '/'; -- Steve -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]