17 lines
483 B
Bash
17 lines
483 B
Bash
###############################################################################
|
|
# File .bash_profile
|
|
# ~/.bash_profile: executed by bash for login shells
|
|
# Jonas Mitschang - jonen@mitschang.net
|
|
###############################################################################
|
|
|
|
# set variable identifying the chroot you work in
|
|
if [ -f /etc/debian_chroot ]; then
|
|
debian_chroot=$(cat /etc/debian_chroot)
|
|
fi
|
|
|
|
# include .bashrc if it exists
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
|