Created
March 28, 2015 14:24
-
-
Save tvrcgo/1fb874c96b877bb2d35c to your computer and use it in GitHub Desktop.
windows commands alias
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
@ECHO OFF | |
doskey ls=dir /b $* | |
doskey ll=dir $* | |
doskey cat=type $* | |
doskey ..=cd.. | |
doskey grep=find "$1" $2 | |
doskey mv=ren $* | |
doskey rm=del $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment