mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
*: use less(1) as the default pager
Inspired by: DragonFlyBSD
This commit is contained in:
parent
138540a8ff
commit
7b9392c69d
4 changed files with 4 additions and 4 deletions
|
|
@ -18,7 +18,7 @@ umask 22
|
|||
set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin)
|
||||
|
||||
setenv EDITOR vi
|
||||
setenv PAGER more
|
||||
setenv PAGER less
|
||||
setenv BLOCKSIZE K
|
||||
|
||||
if ($?prompt) then
|
||||
|
|
|
|||
|
|
@ -6,5 +6,5 @@ HOME=/root
|
|||
export HOME
|
||||
TERM=${TERM:-xterm}
|
||||
export TERM
|
||||
PAGER=more
|
||||
PAGER=less
|
||||
export PAGER
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ alias ll ls -lAF
|
|||
# umask 22
|
||||
|
||||
setenv EDITOR vi
|
||||
setenv PAGER more
|
||||
setenv PAGER less
|
||||
|
||||
if ($?prompt) then
|
||||
# An interactive shell -- set some stuff up
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
# TERM=xterm; export TERM
|
||||
|
||||
EDITOR=vi; export EDITOR
|
||||
PAGER=more; export PAGER
|
||||
PAGER=less; export PAGER
|
||||
|
||||
# set ENV to a file invoked each time sh is started for interactive use.
|
||||
ENV=$HOME/.shrc; export ENV
|
||||
|
|
|
|||
Loading…
Reference in a new issue