8 lines
78 B
Perl
Executable file
8 lines
78 B
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
while (<STDIN>) {
|
|
chomp($_);
|
|
if ($_){
|
|
print "$_\n";
|
|
}
|
|
}
|