fixup aliases

pull/1/head
Andrew Coleman 2019-01-22 09:14:26 -05:00
parent e9e2d51b9d
commit a3b8e3db52
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
alias dotfiles='git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME'
alias nokeyssh="ssh -o PubkeyAuthentication=no"
if [ `uname -s` == 'Linux' ] ; then
UNAME_S=`uname -s`
if [[ "$UNAME_S" == "Linux" || "$UNAME_S" == "CYGWIN_NT-10.0" ]] ; then
alias ls="ls --color=auto"
fi
if [ `uname -s` == 'BSD' ] ; then
if [ "$UNAME_S" == "BSD" ] ; then
alias ls="ls -G"
fi