Guilherme
Guilherme

Reputation: 157

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?

Upvotes: 1

Views: 126

Answers (2)

sehe
sehe

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

brandon
brandon

Reputation: 1656

You can alias mmc in your .bashrc:

alias mmc "/path/to/mercurycompiler"

Upvotes: 1

Related Questions