8 lines
126 B
Bash
8 lines
126 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# bash_profile is executed immediately after logging in
|
||
|
|
||
|
if [ -f ~/.bashrc ]; then
|
||
|
source ~/.bashrc
|
||
|
fi
|