From 797a2bec39a43b5122ec2bab24c2f1a66fed1df5 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Sun, 4 Nov 2012 11:13:07 -0800 Subject: [PATCH] Include profile and have it load bashrc --- profile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 profile diff --git a/profile b/profile new file mode 100644 index 0000000..93849e1 --- /dev/null +++ b/profile @@ -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" +