dotfiles/.bash_profile
2017-12-05 20:56:54 +01:00

17 lines
452 B
Bash

###############################################################################
# File .bash_profile
# ~/.bash_profile: executed by bash for login shells
# jul.io
###############################################################################
# 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