Skip to content

Instantly share code, notes, and snippets.

@tomcha
Created August 6, 2014 10:24
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 tomcha/f40a5ad552e0befc236a to your computer and use it in GitHub Desktop.
Save tomcha/f40a5ad552e0befc236a to your computer and use it in GitHub Desktop.
linger入学式のコード
#!/usr/bin/env perl
#use 5.012;
use warnings;
use strict;
#foreach (glob ('*')) {
# my $dest = readlink $_;
# print "$_ -> $dest\n" if defined $dest;
#}
my @filenames= glob('*');
for my $filename (@filenames){
print "$filename\n";
}
__END__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment