5 lines
77 B
Bash
5 lines
77 B
Bash
#!/bin/bash
|
|
if [ -r "$HOME/.bash_profile" ]
|
|
then
|
|
. "$HOME/.bash_profile"
|
|
fi
|