fork download
  1. #!/usr/bin/perl
  2.  
  3. while (<>) {
  4. next if ($. == 1);
  5. print $_;
  6. }
Success #stdin #stdout 0s 3608KB
stdin
one
two
three
stdout
two
three