1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-27 05:41:46 +00:00

Load (private) .bash_procile_env if present

This commit is contained in:
Holger Just 2016-09-14 16:36:53 +02:00
parent 4a7e196e6a
commit 9f4fb865a8

View File

@ -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 to resolve soft links
function delink() function delink()