Skip to content

Instantly share code, notes, and snippets.

@witoff
Last active December 21, 2015 06:29
Show Gist options
  • Save witoff/6264885 to your computer and use it in GitHub Desktop.
Save witoff/6264885 to your computer and use it in GitHub Desktop.
Matt's Pies
use File::Find;
$search_dir = '.';
find sub {
return if -d;
push @remote_file_names, $File::Find::name;
}, $search_dir;
foreach(@remote_file_names)
{
print "$_\r\n";
}
##
# OR
##
system("find $search_dir -type f");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment