feat(bash): add alias fastping

This commit is contained in:
thek4n 2024-05-17 13:05:05 +03:00
parent b9057172df
commit 3641c722a2

View File

@ -70,6 +70,7 @@ alias myip='curl ipinfo.io/ip'
alias sprunge='curl -F "sprunge=<-" http://sprunge.us 2>/dev/null' # CLI pastebin
alias weather='(curl -4 wttr.in/$(cat) 2>/dev/null | head -n -1) <<<'
alias ip='ip -c'
alias fastping='ping -c 100 -i 0.1'
# starts web server
alias www='python3 -m http.server 8080'