Include profile and have it load bashrc

main
Buddy Sandidge 12 years ago
parent 7ffb50828f
commit 797a2bec39

@ -0,0 +1,15 @@
#!/usr/bin/env bash
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
export LANGUAGE="en_US:en"
export LC_MESSAGES="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
export LC_COLLATE="en_US.UTF-8"
Loading…
Cancel
Save