Help for this page

Select Code to Download


  1. or download this
    ( while read command param; do  # whatever method
        files=`command param`       # to gather the files
    ...
            echo $file
        done
    done) | maincode.pl
    
  2. or download this
    #!/usr/bin/perl
    use IPC::Open2;
    ...
            ... # do whatever with each line in the file
        }
    }