in reply to Re^2: oneliner cat like capability
in thread oneliner cat like capability
perl -e 'print while <>' -- dataoutput.txt
It's just helpful: if you want to iterate over the input and print always, use -p; if you want to iterate but not print, use -n; otherwise, use neither.
|
|---|