Cygwin用「ディレクトリを開く」


function open() {
if [ $# -gt 0 ]; then d=$1; else d=`pwd`; fi
explorer "`cygpath -w $d`"
}