Files
zShared/shared/bash_profile
USER 38b4f8b54f .
2024-08-24 11:45:00 +01:00

21 lines
457 B
Bash

# If not running interactively, don't do anything and return early
# [[ $- == *i* ]] || return
# if [ -f /zz/zShared/shared/bashrc ]
# then
# . /zz/zShared/shared/bashrc
# fi
# if [ -f /zz/zPrivate/secrets/bashrc ]
# then
# . /zz/zPrivate/secrets/bashrc
# else
# if [ -f /zz/Syno/secrets/bashrc ]
# then
# . /zz/zSyno/secrets/bashrc
# else
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
# fi
# fi