Skip to content

Instantly share code, notes, and snippets.

@prasincs
Created July 26, 2009 17:44
Show Gist options
  • Save prasincs/155867 to your computer and use it in GitHub Desktop.
Save prasincs/155867 to your computer and use it in GitHub Desktop.
#!/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