ExampleBashrc: Difference between revisions

From Mu2eWiki
Jump to navigation Jump to search
(Created page with "<pre> # 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...")
(No difference)

Revision as of 22:40, 21 September 2017

# 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