Created
July 28, 2017 10:19
-
-
Save haakym/643474f5fbbdf7f31e38ad02cea6ccb1 to your computer and use it in GitHub Desktop.
Cmder User Aliases
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 | |
;= rem Call DOSKEY and use this file as the macrofile | |
;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0% | |
;= rem In batch mode, jump to the end of the file | |
;= goto:eof | |
;= Add aliases below here | |
e.=explorer . | |
gl=git log --oneline --all --graph --decorate $* | |
ls=ls --show-control-chars -F --color $* | |
pwd=cd | |
clear=cls | |
history=cat "%CMDER_ROOT%\config\.history" | |
unalias=alias /d $1 | |
vi=vim $* | |
cmderr=cd /d "%CMDER_ROOT%" | |
cd~=cd %HOMEPATH% | |
nodejs=node $* | |
wget=curl -OL $* | |
e=notepad++ $* | |
ll=ls -gohlat --show-control-chars -F --color $* | |
cd~=cd %HOMEPATH% | |
e=subl $* | |
e.=explorer . | |
gl=git log --oneline --all --graph --decorate $* | |
ls=ls --show-control-chars -F --color $* | |
pwd=cd | |
clear=cls | |
ll=ls -gohlat --show-control-chars -F --color $* | |
vi=vim $* | |
nodejs=node $* | |
wget=curl -OL $* | |
history=cat %CMDER_ROOT%\config\.history | |
cd~=cd %HOMEPATH% | |
unalias=alias /d $1 | |
art=php artisan $* | |
..= cd .. | |
cc=clear | |
pu=vendor\bin\phpunit $* | |
pf=vendor\bin\phpunit --filter $* | |
glo=git log --oneline $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment