Cosmetic tweaks to the default shell rc files, mostly comments.

MFC after:	2 weeks
This commit is contained in:
Edward Tomasz Napierala
2017-07-05 13:08:07 +00:00
parent f21acf083a
commit df6744e840
4 changed files with 11 additions and 3 deletions
+2 -2
View File
@@ -2,11 +2,11 @@
#
# .login - csh login script, read by login shell, after `.cshrc' at login.
#
# see also csh(1), environ(7).
# See also csh(1), environ(7).
#
# Query terminal size; useful for serial lines.
if ( -x /usr/bin/resizewin ) /usr/bin/resizewin -z
# Uncomment to display a random cookie each login:
# Uncomment to display a random cookie on each login.
# if ( -x /usr/bin/fortune ) /usr/bin/fortune -s
+4
View File
@@ -9,4 +9,8 @@ export TERM
PAGER=more
export PAGER
# Query terminal size; useful for serial lines.
if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi
# Uncomment to display a random cookie on each login.
# if [ -x /usr/bin/resizewin ] ; then /usr/bin/fortune -s ; fi
+4 -1
View File
@@ -2,8 +2,11 @@
#
# .login - csh login script, read by login shell, after `.cshrc' at login.
#
# see also csh(1), environ(7).
# See also csh(1), environ(7).
#
# Query terminal size; useful for serial lines.
if ( -x /usr/bin/resizewin ) /usr/bin/resizewin -z
# Display a random cookie on each login.
if ( -x /usr/bin/fortune ) /usr/bin/fortune freebsd-tips
+1
View File
@@ -24,4 +24,5 @@ ENV=$HOME/.shrc; export ENV
# Query terminal size; useful for serial lines.
if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi
# Display a random cookie on each login.
if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune freebsd-tips ; fi