Update the .bash{rc,_profile}s for root and sysadmin.

This commit is contained in:
Darren 'Tadgy' Austin 2025-09-14 14:55:30 +00:00
commit 351d41e943
4 changed files with 8 additions and 6 deletions

View file

@ -7,6 +7,8 @@ export PATH="/opt/sbin:/opt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bi
hash less >/dev/null 2>&1 && export PAGER="less"
hash nano >/dev/null 2>&1 && export EDITOR="nano" && export VISUAL="$EDITOR"
[[ "$TERM" == screen.* ]] && export TERM="${TERM#screen.}"
[[ -d "$HOME/files/bin" ]] && export PATH="$HOME/files/bin:$PATH"
[[ -d "$HOME/.local/bin" ]] && export PATH="$HOME/.local/bin:$PATH"
[[ -d "$HOME/bin" ]] && export PATH="$HOME/bin:$PATH"