Help for this page

Select Code to Download


  1. or download this
    $ cat asdf
    #!/bin/sh
    ...
    line 3
    line 4
    >>
    
  2. or download this
    $ perl -e'print "Captured $_" for `./asdf 2>&1`;'
    Captured line 1
    Captured line 2
    Captured line 3
    Captured line 4