mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2024-12-14 09:55:13 +01:00
7 lines
129 B
Bash
7 lines
129 B
Bash
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|