Revert "Remove utility aliases for Cygwin"

This reverts commit d368d0536b.
This commit is contained in:
Sorin Ionescu 2014-01-03 14:46:30 -05:00
parent fa6723a5ee
commit 80ded5e33d
1 changed files with 4 additions and 0 deletions

View File

@ -104,6 +104,10 @@ alias sl='ls' # I often screw this up.
# Mac OS X Everywhere
if [[ "$OSTYPE" == darwin* ]]; then
alias o='open'
elif [[ "$OSTYPE" == cygwin* ]]; then
alias o='cygstart'
alias pbcopy='tee > /dev/clipboard'
alias pbpaste='cat /dev/clipboard'
else
alias o='xdg-open'