10 lines
129 B
Bash
10 lines
129 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
if [ -z "$SSH_AUTH_SOCK" ] ; then
|
|
eval `ssh-agent -s` > /dev/null
|
|
fi
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|