Bash start up script

From Wiki at Neela Nurseries
Revision as of 00:11, 5 June 2021 by Ted (talk | contribs) (noting dot bashrc amendments script changes, per new needs in VM and Docker environs.)
Jump to: navigation, search

2020-11-02

For now, the following is a minimal .bashrc start up script, which matches the one on this wiki's home page in the section on shell scripting in Unix and Unix-like environments:

#!/usr/bin

if [ -e $HOME/Desktop/dot-bashrc-amendments.sh ]; then
    . $HOME/Desktop/dot-bashrc-amendments.sh
fi

# --- EOF ---