Difference between revisions of "Bash start up script"

From Wiki at Neela Nurseries
Jump to: navigation, search
(Created page with "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...")
(No difference)

Revision as of 17:56, 2 November 2020

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 ---