Quick Tip: Cygwin here shortcut, Explorer here shortcut

Thanks to this mailing list post I now have a ‘Bash here’ option in my windows explorer context menu for folders and drives. Simply add this registry script to the windows registry.

Thanks to my self and this little script, I can open a ‘windows explorer window here’ from within cygwin.

#! /bin/bash
PWD=`pwd`
PATH=`cygpath -w $PWD`
/cygdrive/c/WINDOWS/explorer.exe $PATH
  • Digg
  • del.icio.us
  • NewsVine
  • Reddit
  • Furl
  • DZone
  • StumbleUpon
  • Technorati

One Response to “Quick Tip: Cygwin here shortcut, Explorer here shortcut”

  1. Michael Says:

    Hi Dave,

    I have this alias in my bash rc file as I prefer the double-pane view in Explorer.

    alias x=’explorer /e,. &’

    Cheers
    Michael

Leave a Reply