-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaliases.sh
More file actions
executable file
·58 lines (58 loc) · 1.76 KB
/
aliases.sh
File metadata and controls
executable file
·58 lines (58 loc) · 1.76 KB
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
#alias
alias gcp='gpick'
alias gpc='gpick'
alias c='clear'
alias n='nano'
alias v='vim'
alias tx='tmux'
alias t='tmux attach -t0'
alias t1='tmux attach -t1'
alias ta='tmux attach -t'
alias tl='tmux ls'
alias h='htop'
alias cs='ccache -s'
alias s='source'
alias q='exit'
alias e='echo'
alias du='du -h'
alias dus='du -sh'
alias d='df -h'
alias wh='which'
alias rmrf='rm -rf'
alias path='echo -e ${PATH//:/\\n}'
alias myip="curl http://ipecho.net/plain; echo"
alias myisp='curl ipinfo.io'
alias st2='curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -'
alias rs='repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j'
alias f='free -h'
alias sshn='ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
alias gs='gcloud cloud-shell ssh'
alias gsp='gcloud cloud-shell ssh --ssh-flag "-D 1080"'
alias gcls='git clone --recurse-submodules --single-branch --depth=1'
alias gclf='git clone --recurse-submodules --depth 1 --filter=tree:0 --no-checkout'
alias hi=history
alias dk=docker
alias dp='docker ps'
alias dpa='docker ps -a'
alias da='docker attach'
alias dca='docker container attach'
alias drm='docker rm'
alias drmi='docker rmi'
alias di='docker images'
alias ds='docker stop'
alias dr='docker run'
alias dri='docker run -it'
alias dl='docker logs'
alias drin='docker run -it --name'
alias dc='docker compose'
alias pg='ps aux|grep'
alias z='sudo zerotier-cli join 8056c2e21cf19ea8'
alias gac='git add --all && git commit -m'
alias gppe='git add . && git commit -m empty --allow-empty && git push'
alias ddc='ddcutil setvcp 12'
alias aptn='sudo apt --no-install-recommends install'
alias aptp='sudo apt purge'
alias apts='apt search'
alias aptr='sudo apt remove'
alias ve='. ~/venv/bin/activate'
alias ag='alias|grep'