This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
bash-shell-base/alias/shell
David Kebler 0ac5906eee refactor the way the module library is loaded
added startup script callable from profile.d
renamed setup.sh to load.sh
added rsync copy function cprs
added shell.env that is called by /etc/profile to set up access to this  and related repos
2020-11-13 10:25:04 -08:00

9 lines
411 B
Text

alias ebashrc="gedit $HOME/.bashrc"
alias eetcbashrc="sudo gedit /etc/bash.bashrc"
alias eetcprofile="sudo gedit /etc/profile"
alias eprofile="gedit $HOME/.bash_profile"
alias cbashrc="cp $HOME/.bashrc $BASH_SHELL_BASE/setup"
alias cetcbashrc="cp /etc/bash.bashrc $BASH_SHELL_BASE/setup"
alias cprofile="cp $HOME/.bash_profile $BASH_SHELL_BASE/setup"
alias cetcprofile="cp /etc/profile $BASH_SHELL_BASE/setup"