Skip to content

Instantly share code, notes, and snippets.

@flpms
Created May 16, 2016 14:17
Show Gist options
  • Select an option

  • Save flpms/5dd788b9489a873da556ad627fca7905 to your computer and use it in GitHub Desktop.

Select an option

Save flpms/5dd788b9489a873da556ad627fca7905 to your computer and use it in GitHub Desktop.
this bat file associate linux commands to commands in windows
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