RosettaCodeData/Task/Unix-ls/Perl/unix-ls-1.pl

6 lines
133 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
opendir my $handle, '.' or die "Couldnt open current directory: $!";
while (readdir $handle) {
print "$_\n";
}
closedir $handle;