http://qs321.pair.com?node_id=289533


in reply to Re: How to trace a dying process
in thread How to trace a dying process

Not under UNIX. EOF/EOT is CTRL-D, which is ASCII 4:
$ printf "hi\n\004\nthere\n" |perl -e'while(<>){print}' hi there
I have no idea about other OS's, though.