Created
July 26, 2009 17:44
-
-
Save prasincs/155867 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Edit your cygwin files in notepad++, the best windows editor. | |
# Vim and emacs don't seem to work too well in cygwin. | |
ROOT_DIR_WINDOWS=D:\\\\cygwin | |
expandToWindows() { | |
y=`echo $1| sed -e 's/\//\\\\/g'` | |
echo $ROOT_DIR_WINDOWS\\$y | |
} | |
expArg=`expandToWindows $1` | |
echo $expArg | |
/cygdrive/c/Program\ Files/Notepad++/notepad++.exe $expArg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment