ssh -t $HOST screen $DISCONNECT $RECONNECT
}
-for host in ssh_hosts=$( grep '^Host[ ][^*]' ~/.ssh/config | cut -c 6- ); do
+for host in $( grep '^Host[ ][^*]' ~/.ssh/config | cut -c 6- ); do
alias "$host"="_ssh_screen $host $@"
done
#!/bin/bash
export WEBKIT_DIR=~/Projects/WebKit.git
-source ${WEBKIT_DIR}/webkitenv
\ No newline at end of file
+if [[ -f ${WEBKIT_DIR}/webkitenv ]]; then
+ source ${WEBKIT_DIR}/webkitenv
+fi
+++ /dev/null
-#!/bin/bash
-
-export EMAIL_ADDRESS=jer.noble@apple.com
-export WEBKIT_DIR=~/Projects/WebKit.git
-export PATH=$PATH:$WEBKIT_DIR/OpenSource/Tools:$WEBKIT_DIR/OpenSource/Tools/Scripts:$WEBKIT_DIR/Internal/Tools/Scripts
-export PS1='$( if [ $? = 0 ]; then echo \[\e[32m\]:-\)\ ; else echo \[\e[31m\]:-\(\ ;fi;)\[\e[0m\]$(__git_ps1 "(%s) ")\u@\h:$(short_pwd)> '
-
-alias opensource="cd $WEBKIT_DIR/OpenSource"
-alias internal="cd $WEBKIT_DIR/Internal"
-
-source ~/bin/git-completion.bash