blob: 3e60711fb9fe883bd04dd7d9a7d0b9a8e6803f0b (
plain)
1
2
3
4
5
6
7
|
# Set up the system, user profile, and related variables.
# /etc/profile will be sourced by bash automatically
# Set up the home environment profile.
if [ -f ~/.profile ]; then source ~/.profile; fi
# Honor per-interactive-shell startup file
if [ -f ~/.bashrc ]; then source ~/.bashrc; fi
|