update
This commit is contained in:
16
.bash_profile
Normal file
16
.bash_profile
Normal file
@ -0,0 +1,16 @@
|
||||
# .bash_profile
|
||||
|
||||
# Get the aliases and functions
|
||||
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|
||||
|
||||
export _JAVA_AWT_WM_NOREPARENTING=1
|
||||
|
||||
# SSHAGENT
|
||||
export SSH_AUTH_SOCK=${HOME}/.ssh/agent
|
||||
if ! pgrep -u ${USER} ssh-agent > /dev/null; then
|
||||
rm -f ${SSH_AUTH_SOCK}
|
||||
fi
|
||||
if [ ! -S ${SSH_AUTH_SOCK} ]; then
|
||||
eval $(ssh-agent -a ${SSH_AUTH_SOCK} 2> /dev/null)
|
||||
fi
|
||||
|
Reference in New Issue
Block a user