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