Help for this page

Select Code to Download


  1. or download this
    widget1 --flag < input_file | widget2 | widget3 > output_file
    
  2. or download this
    #!/usr/bin/perl
    open $in_fh,  "<$in" or die $!;
    open $out_fh, ">$out" or die $!;
    XS_widget( $in_fh, $out_fh );   # reads stuff from $in_fh and writes s
    +tuff to $out_fh