diff options
author | thepish <thepish@FreeBSD.org> | 1998-08-14 13:49:57 +0000 |
---|---|---|
committer | thepish <thepish@FreeBSD.org> | 1998-08-14 13:49:57 +0000 |
commit | 53610b2ad56b73956c4c80e2e1f8a8bb5b81d3e8 (patch) | |
tree | 9e758cfd71d2bc5e2d6d3343574c6ec5a29bba77 /share | |
parent | e0dded8d46d143ff38317fa98e0e1a2842a78bc3 (diff) | |
download | FreeBSD-src-53610b2ad56b73956c4c80e2e1f8a8bb5b81d3e8.zip FreeBSD-src-53610b2ad56b73956c4c80e2e1f8a8bb5b81d3e8.tar.gz |
PR: 7613
Submitted by: Sheldon Hearn <axl@iafrica.com>
set crt='' so that mail(1) will page according to stty(1) setting
Diffstat (limited to 'share')
-rw-r--r-- | share/skel/dot.profile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/share/skel/dot.profile b/share/skel/dot.profile index 3ee09fd..4f93627 100644 --- a/share/skel/dot.profile +++ b/share/skel/dot.profile @@ -1,4 +1,4 @@ -# $Id: dot.profile,v 1.15 1997/09/26 08:28:31 joerg Exp $ +# $Id: dot.profile,v 1.16 1998/06/06 15:01:46 kuriyama Exp $ # # .profile - Bourne Shell startup script for login shells # @@ -18,7 +18,9 @@ BLOCKSIZE=K; export BLOCKSIZE EDITOR=vi; export EDITOR PAGER=more; export PAGER # make mail(1) happy: -crt=24; export crt +#crt=24; export crt +#set crt='' to have mail(1) use the setting from stty(1) by default +crt=''; export crt # set ENV to a file invoked each time sh is started for interactive use. ENV=$HOME/.shrc; export ENV |