From 9f4fb865a8422da9688fe2deff512d775d2b8bc0 Mon Sep 17 00:00:00 2001 From: Holger Just Date: Wed, 14 Sep 2016 16:36:53 +0200 Subject: [PATCH] Load (private) .bash_procile_env if present --- .bashrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 05034f2..4bf62b0 100644 --- a/.bashrc +++ b/.bashrc @@ -1,4 +1,5 @@ -if [[ -f /etc/bashrc ]]; then . /etc/bashrc; fi +[[ -f /etc/bashrc ]] && . /etc/bashrc +[[ -f "$HOME/.bash_profile_env" ]] && . "$HOME/.bash_profile_env" # Function to resolve soft links function delink()