Map linux commands Cygwin
I have installed on cygwin a mercury compiler but the comand to invoke it is *mmc module_name* but mmc calls Microsoft Management Console.
开发者_开发知识库Is there anything I can do about it?
Also, you could edit your ~.bashrc
to contain something like
export PATH="/usr/bin:$PATH"
This will also prevent problems with find.exe
being used from Windows (ick) etc.
You can alias mmc in your .bashrc:
alias mmc "/path/to/mercurycompiler"
精彩评论