Skip to content

Instantly share code, notes, and snippets.

@raks437
Created September 18, 2017 08:52
Show Gist options
  • Save raks437/11488cf687a624470f37fa5cb309d7ee to your computer and use it in GitHub Desktop.
Save raks437/11488cf687a624470f37fa5cb309d7ee to your computer and use it in GitHub Desktop.
@echo off
doskey ls=dir $* /w
doskey la=dir /a $*
doskey ll=dir /n $*
doskey lla=dir /n /a $*
doskey rm=del $*
doskey cp=copy $*
doskey mv=move $*
doskey cat=type $*
doskey man=help $*
doskey touch=copy nul $*
doskey gs=git status
doskey gc=git clone $*
doskey gco=git checkout $*
doskey gpullm=git pull origin master
doskey gpull=git pull origin $*
doskey gpushm=git push origin master
doskey gpush=git push origin $*
doskey pss=python -m SimpleHTTPServer $*
doskey p1=cd %userprofile%\Projects
doskey p2=cd %userprofile%\Projects\github
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment