-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bashrc.include.aliases-common.bat
62 lines (44 loc) · 1.44 KB
/
.bashrc.include.aliases-common.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@echo off
:: echo Included filename "%~f0"
::
:: Common DOS doskeyes
::
:: Fast access to Notepad
doskey n=notepad $*
doskey e=explorer . $*
doskey ls=ls --color=auto $*
doskey grep=grep --color=auto $*
doskey cp=cp -i -p $*
doskey mv=mv -i $*
doskey ll=ls -alh --color=auto $*
doskey la=ls -A --color=auto $*
doskey l=ls -CF --color=auto $*
doskey cd=pushd $*
doskey ..=cd ..
doskey ...=cd ../..
doskey ....=cd ../../..
doskey .....=cd ../../../..
doskey ......=cd ../../../../..
doskey push=git push origin HEAD
doskey phpunit=phpunit --colors $*
doskey less=less -R $*
doskey be=bundle exec $*
doskey bers=bundle exec rails server $*
doskey nr=npm run $*
doskey dm=docker-machine $*
doskey dc=docker-compose $*
doskey a=atom . $*
doskey v=code-insiders --add . $*
doskey drun=docker run -it --rm -v %CD%:/code -w /code $*
doskey weather=curl wttr.in/$1
doskey wresume=wget --content-disposition --continue --retry-connrefused --tries=0 --timeout=5 $*
doskey va=cmd /C "vagrant up && vagrant ssh"
doskey �ɂ�[��=yarn $*
:: I'm in Windows now
doskey which=where $*
doskey ifconfig=ipconfig $*
doskey unclip=powershell -Command Get-Clipboard $*
doskey rawrec=rec -t raw -b 16 -c 1 -e s -r 24000 - $*
doskey rawplay=play -t raw -b 16 -c 1 -e s -r 24000 - $*
doskey d=cmd /C "npx webpack && git add . && git commit -m ""Checkpoint commit to deploy for TSG LIVE! viewers"" && git push"
doskey toast=snoretoast -t "Toast command fired" -m "Pssssst!" $*