ExampleBashrc: Difference between revisions

From Mu2eWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 13: Line 13:
         ;;
         ;;
esac
esac
if [ -f "${HOME}/.my_bashrc" ]; then
    source "${HOME}/.my_bashrc"
fi
</pre>
</pre>


[[Category:Computing]]
[[Category:Computing]]
[[Category:Infrastructure]]
[[Category:Infrastructure]]

Latest revision as of 04:40, 18 September 2021

# Example .bashrc file for use by Mu2e accounts at Fermilab
#
# This file will be sourced at the start of all shells that are interactive
# but not login shells (unless you source it in your .bash_profile).
#
case "$-" in
*i*)	# These commands executed for interactive shells
        set -o noclobber            #prevent overwrite when redirecting output
  	set -o ignoreeof            #prevent accidental logouts
        ;;
*)	# These commands executed for non-interactive shells
        ;;
esac

if [ -f "${HOME}/.my_bashrc" ]; then
    source "${HOME}/.my_bashrc"
fi