1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1994-02-21 20:36:03 +00:00
|
|
|
#
|
Step 1 of eliminating the "games" distribution: Move binaries to /usr/bin;
update paths; and include everything in the "base" distribution.
The "games" distribution being optional made sense when there were more
games and we had small disks; but the "games-like" games were moved into
the ports tree a dozen years ago and the remaining "utility-like" games
occupy less than 0.001% of my laptop's small hard drive. Meanwhile every
new user is confronted by the question "do you want games installed" when
they they try to install FreeBSD.
The next steps will be:
2. Removing punch card (bcd, ppt), phase-of-moon (pom), clock (grdc), and
caesar cipher (caesar, rot13) utilities. I intend to keep fortune, factor,
morse, number, primes, and random, since there is evidence that those are
still being used.
3. Merging src/games into src/usr.bin.
This change will not be MFCed.
Reviewed by: jmg
Discussed at: EuroBSDCon
Approved by: gjb (release-affecting changes)
2015-02-12 05:35:00 +00:00
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:~/bin
|
1993-06-20 13:41:45 +00:00
|
|
|
export PATH
|
1996-03-06 05:23:00 +00:00
|
|
|
HOME=/root
|
|
|
|
export HOME
|
2009-11-13 05:54:55 +00:00
|
|
|
TERM=${TERM:-xterm}
|
1993-06-20 13:41:45 +00:00
|
|
|
export TERM
|
2018-08-08 19:24:20 +00:00
|
|
|
PAGER=less
|
1997-09-26 08:28:19 +00:00
|
|
|
export PAGER
|
2017-07-05 10:37:37 +00:00
|
|
|
|
2019-01-24 23:34:51 +00:00
|
|
|
# set ENV to a file invoked each time sh is started for interactive use.
|
|
|
|
ENV=$HOME/.shrc; export ENV
|
|
|
|
|
2017-07-05 13:08:07 +00:00
|
|
|
# Query terminal size; useful for serial lines.
|
2017-07-05 10:37:37 +00:00
|
|
|
if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi
|
2017-07-05 13:08:07 +00:00
|
|
|
|
|
|
|
# Uncomment to display a random cookie on each login.
|
2017-07-05 15:42:33 +00:00
|
|
|
# if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune -s ; fi
|