From mboxrd@z Thu Jan 1 00:00:00 1970 From: jnc@mercury.lcs.mit.edu (Noel Chiappa) Date: Sat, 14 Oct 2017 00:25:17 -0400 (EDT) Subject: stty erase '^?' in v7 Message-ID: <20171014042517.3938A18C09E@mercury.lcs.mit.edu> > From: Will Senn > 1. How do you escape # in order to write a C program if # is the erase > character in the terminal? "Use the source, Luke!" V7 is simple enough that it's pretty quick to find the answers to things like this. E.g. http://minnie.tuhs.org/cgi-bin/utree.pl?file=V7/usr/sys/dev/tty.c> will answer this question (in "canon()"). > 3. Is there a way to echo the ascii value of a keypress in v7? A quick look through tty.c suggests this doesn't exist in V7 - without running a user program that puts the TTY in 'raw' mode and prints out what it sees. Not sure if there is one off the rack, or if you'd have to whip up a 20-line program to do it. Noel