Help for this page

Select Code to Download


  1. or download this
    # $@ being the shell's quoted argument list
    perl program1 $@ | perl program2
    
  2. or download this
    # program1.pl
    ...
    ...
    while(my $line = <STDIN>) {
        do_something($line);
    }