dotfiles/.bash_profile
Julian Scharrenbach d54f5cebe5 adding the dotfiles
2017-12-05 08:18:37 +01:00

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