]> CyberLeo.Net >> Repos - CDN/bash-config.git/blob - bash-config/bash_profile.d/98-dot-bash-profile
Current work
[CDN/bash-config.git] / bash-config / bash_profile.d / 98-dot-bash-profile
1 # Source user's bash_profile, if it exists and isn't a symlink to myself
2 _prof="$(realpath "${HOME}/.bash_profile")"
3 [ -f "${_prof}" ] && echo "${_prof}" | grep -qv "^${_base}" && source "${_prof}"
4 unset _prof