Compare commits

..

No commits in common. "8795465b800d3b3aa87ce7d56e42e287d0600b6c" and "64fe2474da01067db2aace222d0ae8b44fbd7edb" have entirely different histories.

View File

@ -10,10 +10,9 @@ alias _find=`which find`
alias _top=`which top` alias _top=`which top`
alias _ps="/bin/ps" alias _ps="/bin/ps"
alias _dig=`which dig` alias _dig=`which dig`
alias _readlink='/usr/bin/readlink' alias _readlink=`/usr/bin/readlink`
alias _sed='/usr/bin/sed' alias _sed=`/usr/bin/sed`
alias _date='/bin/date' alias _date=`/bin/date`
alias _base64='/usr/bin/base64'
alias _git=`which git` alias _git=`which git`
if command -v $(brew --prefix)/bin/git &>/dev/null; then if command -v $(brew --prefix)/bin/git &>/dev/null; then
alias _git=$(brew --prefix)/bin/git alias _git=$(brew --prefix)/bin/git
@ -43,7 +42,6 @@ alias tmp='cd $(mktemp -d)'
which greadlink &>/dev/null && ln -sfn `which greadlink` ~/.bin/readlink which greadlink &>/dev/null && ln -sfn `which greadlink` ~/.bin/readlink
which gsed &>/dev/null && ln -sfn `which gsed` ~/.bin/sed which gsed &>/dev/null && ln -sfn `which gsed` ~/.bin/sed
which gdate &>/dev/null && ln -sfn `which gdate` ~/.bin/date which gdate &>/dev/null && ln -sfn `which gdate` ~/.bin/date
which gbase64 &>/dev/null && ln -sfn `which gbase64` ~/.bin/base64
lt() { lt() {
DEPTH=$(echo $1 | grep "^[0-9]*$") DEPTH=$(echo $1 | grep "^[0-9]*$")