8 lines
74 B
Perl
Executable File
8 lines
74 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
|
|
for my $arg (@ARGV) {
|
|
print "$arg\n";
|
|
}
|