mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
023fc80ee3
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Similar commit in main:
(cherry picked from commit d0b2dbfa0e
)
18 lines
495 B
Text
18 lines
495 B
Text
#
|
|
HOME=/root
|
|
export HOME
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:~/bin
|
|
export PATH
|
|
TERM=${TERM:-xterm}
|
|
export TERM
|
|
PAGER=less
|
|
export PAGER
|
|
|
|
# set ENV to a file invoked each time sh is started for interactive use.
|
|
ENV=$HOME/.shrc; export ENV
|
|
|
|
# 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/fortune ] ; then /usr/bin/fortune -s ; fi
|