2011-09-23 16:21:36 +02:00
|
|
|
# /etc/bashrc: DO NOT EDIT -- this file has been generated automatically.
|
|
|
|
|
2012-03-19 03:35:17 +01:00
|
|
|
# This file is read for interactive non-login shells.
|
|
|
|
|
|
|
|
# Only execute this file once per shell.
|
|
|
|
if [ -n "$__ETC_BASHRC_SOURCED" -o -n "$NOSYSBASHRC" ]; then return; fi
|
|
|
|
__ETC_BASHRC_SOURCED=1
|
|
|
|
|
|
|
|
# If the profile was not loaded in a parent process, source it. But
|
2013-08-10 23:07:13 +02:00
|
|
|
# otherwise don't do it because we don't want to clobber overridden
|
2012-03-19 03:35:17 +01:00
|
|
|
# values of $PATH, etc.
|
|
|
|
if [ -z "$__ETC_PROFILE_DONE" ]; then
|
|
|
|
. /etc/profile
|
2009-05-29 00:02:47 +02:00
|
|
|
fi
|
2009-06-26 13:36:38 +02:00
|
|
|
|
2012-03-19 03:35:17 +01:00
|
|
|
# We are not always an interactive shell.
|
|
|
|
if [ -z "$PS1" ]; then return; fi
|
2011-09-23 16:21:36 +02:00
|
|
|
|
2013-01-30 14:05:53 +01:00
|
|
|
@interactiveShellInit@
|