-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_aliases
executable file
·35 lines (32 loc) · 1.4 KB
/
.bash_aliases
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
# Git Comands
alias git-global-up='find . -name .git -type d | xargs -n1 -P4 -I% git --git-dir=% --work-tree=%/.. remote update -p'
alias fd="fdfind"
alias 2lower="for f in *; do mv "$f" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done"
# Exa config
alias l="exa -aghlHmU --git --icons --header -b -S -u -snew"
alias ll="exa --long -a -@ --git --header -b -B -H -m -S -u -U -snew --icons"
alias et="exa --long -a -@ --git --header -b -B -H -i -m -S -u -U -snew --icons"
# Servers
alias azvm1="ssh -i italo.pem [email protected]"
alias azvm2="ssh -i eita.pem [email protected]"
alias contabo="ssh [email protected]"
alias gcpvm1="ssh [email protected]"
alias gcpvm2="ssh [email protected]"
alias gcpvm3="ssh [email protected]"
alias ocivm1="ssh [email protected]"
alias ocivm2="ssh [email protected]"
alias ocivm3="ssh [email protected]"
alias ocivm4="ssh [email protected]"
alias wgup="sudo wg-quick up wg0"
alias cbovm1="ssh [email protected]"
alias ocijb="ssh [email protected]"
alias c="clear"
alias la="lsd -lhaFt --date relative --group-dirs first"
alias ls="lsd -laF --group-dirs first"
alias lc='colorls -lA --sd'
alias gpom="git push origin master"
alias gpoa="git push origin --all"
alias listening="lsof -i -n | grep -i listen"
alias awsvm1="ssh -i "~/private/keys/aws/italo.pem" [email protected]"
alias upd="sudo apt update && sudo apt upgrade -y"
alias tmb="tmux attach"