add bash in current form

This commit is contained in:
Vladan Popovic 2024-09-29 21:03:26 +02:00
commit 3065a9db72
5 changed files with 170 additions and 0 deletions

10
bash/.bash_aliases Normal file
View file

@ -0,0 +1,10 @@
# vim: set ft=sh:
alias myip="curl http://ip.ie.mk/get"
alias ls="ls --color"
alias grep="grep --color"
alias virsh="virsh --connect qemu:///system"
alias cal="cal -m"
alias genpasswd="strings /dev/urandom | tr -cd '12345!@#$%qwertQWERTasdfgASDFGzxcvbZXCVB' | head -c 32; echo"
alias du="dust -r"
alias jsonpp="python -m json.tool"