Files
cshenv/tcshrc.system.FreeBSD
ADAM David Alan Martin 0f518cb3e0 FreeBSD less options improvement.
When less hits the end, I want it to not quit.  But I also want
less to not page at all on content which fits onto a single screen.
2018-06-20 15:38:09 -04:00

19 lines
347 B
Tcsh

if( $?CSHENV_DEBUG ) then
echo "Sourcing tcshrc.system.FreeBSD..."
endif
# Set the acknowledgement bit, essentially
setenv CSHENV_SYSTEM_CONFIGURED FreeBSD
setenv LESS -erF
setenv PAGER less
if( $?CSHENV_DEBUG ) then
echo "Done sourcing tcshrc.system.FreeBSD..."
endif
###########################
# vim: ft=tcsh
###########################