Reputation: 157
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?
Upvotes: 1
Views: 126
Reputation: 393674
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.
Upvotes: 1
Reputation: 1656
You can alias mmc in your .bashrc:
alias mmc "/path/to/mercurycompiler"
Upvotes: 1