10 lines
166 B
Bash
10 lines
166 B
Bash
#
|
|
# ~/.profile
|
|
#
|
|
|
|
# SSH agent
|
|
[[ -z "$SSH_AUTH_SOCK" && -x "$(which ssh-agent)" ]] && eval `ssh-agent -s` &> /dev/null
|
|
|
|
# Bashrc
|
|
[ -f ~/.bashrc ] && source ~/.bashrc
|