Help for this page

Select Code to Download


  1. or download this
    $ cat > XXX
    qwe
    rty
    
  2. or download this
    $ perl -e 'while (<>) { print }' XXX
    qwe
    rty
    
  3. or download this
    $ perl -e 'while (<STDIN>) { print }' XXX
    ^C
    
  4. or download this
    $ perl -e 'while (<STDIN>) { print }' XXX
    typed
    ...
    from
    keyboard
    keyboard
    
  5. or download this
    $ perl -e 'while (<STDIN>) { print }' < XXX
    qwe
    rty
    
  6. or download this
    $ cat XXX | perl -e 'while (<STDIN>) { print }'
    qwe
    rty