mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
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:
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
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue