Created
May 16, 2016 14:17
-
-
Save flpms/5dd788b9489a873da556ad627fca7905 to your computer and use it in GitHub Desktop.
this bat file associate linux commands to commands in windows
This file contains hidden or 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
| doskey alias = doskey $* | |
| doskey cat = type $* | |
| doskey clear = cls | |
| doskey cp = copy $* | |
| doskey cpr = xcopy $* | |
| doskey grep = find $* | |
| doskey history = doskey /history | |
| doskey kill = taskkill /PID $* | |
| doskey ls = dir $* | |
| doskey man = help $* | |
| doskey mv = move $* | |
| doskey ps = tasklist $* | |
| doskey pwd = cd | |
| doskey rm = del $* | |
| doskey rmr = deltree $* | |
| doskey sudo = runas /user:administrator $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment