Skip to content

Instantly share code, notes, and snippets.

@steingrd
Created March 7, 2012 11:12
Show Gist options
  • Save steingrd/1992567 to your computer and use it in GitHub Desktop.
Save steingrd/1992567 to your computer and use it in GitHub Desktop.
Open Explorer from Cygwin terminal
function e {
TMP_P="$*"
if [[ -z "$*" ]]
then TMP_P=`pwd`
fi
explorer "`cygpath -w \"$TMP_P\"`"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment