Help for this page

Select Code to Download


  1. or download this
    perl -p file1 file3 file14 file47 > selected.txt
    
  2. or download this
    perl -p `cat selection.list` > selected.txt
    
  3. or download this
    perl -p -e'BEGIN{ local $/; open LIST, '<', $ARGV[0]; my @list = <LIST
    +>; @ARGV = @list; }' selection.list > selected.txt