Skip to content

Instantly share code, notes, and snippets.

@dm4
Created February 20, 2011 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dm4/835944 to your computer and use it in GitHub Desktop.
Save dm4/835944 to your computer and use it in GitHub Desktop.
Trace directory using perl
&trace('.');
sub trace {
my $dir = shift;
for (<$dir/*>) {
&trace($_) if -d $dir;
}
print $dir."\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment