2026-03-04 11:25:39 +02:00
|
|
|
# network activity related aliases
|
|
|
|
|
|
2026-04-08 13:10:41 +03:00
|
|
|
alias dl='curl -sSLO'
|
|
|
|
|
|
2026-03-04 11:25:39 +02:00
|
|
|
# itty-bitty-siting
|
|
|
|
|
defalias ibs 'cat $* | lzma -9 | base64 -w0 | xargs -0 printf "https://itty.bitty.site/#/%s\n"'
|
|
|
|
|
|
|
|
|
|
# some Tor-related aliases
|
|
|
|
|
|
|
|
|
|
# reset tor circuit for torified programs (requires control port 9051)
|
|
|
|
|
alias tornew='echo -e "AUTHENTICATE \"\"\r\nsignal NEWNYM\r\nQUIT" | nc 127.0.0.1 9051'
|
|
|
|
|
# most efficient downloads via Tor (torify + aria2)
|
|
|
|
|
alias toraria='torsocks aria2c --async-dns=false -x 16 -j 16'
|
|
|
|
|
|
|
|
|
|
alias websrv='python3 -m http.server'
|