[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference turris::digital_unix

Title:DIGITAL UNIX(FORMERLY KNOWN AS DEC OSF/1)
Notice:Welcome to the Digital UNIX Conference
Moderator:SMURF::DENHAM
Created:Thu Mar 16 1995
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:10068
Total number of notes:35879

8039.0. "ctrl-d in ASCII?" by ZPOVC::JASONCHAN () Fri Nov 29 1996 01:40

T.RTitleUserPersonal
Name
DateLines
8039.1ctrl-d in ASCII?TAEC::BENEUXAlain BENEUXFri Nov 29 1996 02:476
8039.2SSDEVO::ROLLOWDr. File System's Home for Wayward Inodes.Fri Nov 29 1996 04:154
8039.3vi'ssic parkDCWB1::CarlsonPiotr Carlson @RPWFri Nov 29 1996 04:165
8039.4Send EOF to HP printerZPOVC::JASONCHANFri Nov 29 1996 09:439
8039.5ever-famous-1-line-C-program ;-)namix.fno.dec.com::jptFIS and ChipsWed Feb 05 1997 09:3415
        To add ^D at the end of file, do either:

        1. use shell

        # echo \<press-ctrl/d-here> >> your-file.hpgl

	2. build a program to do it

	eot.c:
		main(){ printf("\004\n"); }

	# cc eot.c -o eot

	# eot >> your-file.hpgl