make all
./stein $(printf "\015\015"); echo
NOTE: to avoid problems with news and mail, the single line was split into 3 lines. Join all lines into a single line to recreate the original file.
The \015
in the above printf(1)
command produces a control-N.
One some machines, a control-M control-N arg is needed to get the command to output cleanly:
./stein $(printf "\014\015"); echo
Your system may require another set of characters. In time, you will figure out what it does. :-)
No remarks were provided by the author.