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 edit summary
Line 14: Line 14:
esac
esac
</pre>
</pre>
[[Category:Computing]]
[[Category:Infrastructure]]

Revision as of 18:56, 27 November 2018

# 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