Eliminate use of raw control characters in stty commands, make echo's and

stty commands self consistent.

Submitted by:	bde
This commit is contained in:
Rodney W. Grimes 1994-09-16 04:20:14 +00:00
parent 3e2f490ab4
commit 8f087b98fa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2821
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# $Id: dot.login,v 1.4 1994/02/21 20:36:02 rgrimes Exp $
# $Id: dot.login,v 1.5 1994/06/15 22:58:47 jkh Exp $
#
tset -Q \?$TERM
stty crt erase ^h
stty crt erase ^H
umask 2
echo "Don't login as root, use su"

View File

@ -1,8 +1,8 @@
# $Id: dot.profile,v 1.4 1994/02/21 20:36:03 rgrimes Exp $
# $Id: dot.profile,v 1.5 1994/06/15 22:58:49 jkh Exp $
#
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:.
echo 'erase ^h, kill ^U, intr ^C'
stty crt erase  kill  intr 
echo 'erase ^H, kill ^U, intr ^C'
stty crt erase ^H kill ^U intr ^C
export PATH
HOME=/root
export HOME