9 lines
127 B
Bash
9 lines
127 B
Bash
#!/bin/bash
|
|
#
|
|
# "$HOME/.bash_profile"
|
|
# shellcheck disable=SC1090
|
|
if [ -f "$HOME/.bashrc" ]
|
|
then
|
|
source "$HOME/.bashrc"
|
|
fi
|