The original post: /r/datahoarder by /u/orcus on 2025-02-26 02:59:12.
I'm a unix grump, I mostly hoard code and distro ISOs and here are my top aliases related to hoarding said things. I use zsh, ymmv with other shells.
These mostly came about from doing long shell pipelines and just deciding to slap an alias on them.
# yes I know I could configure aria2, but I'm lazy
# description: download my random shit urls faster
alias aria='aria2c -j16 -s16 -x16 -k1M'
# I'll let you figure this one out
alias ghrip='for i in $(gh repo list --no-archived $(basename $PWD) -L 9999 --json name | jq -r ".[].name"); do gh repo clone $(basename $PWD)/$i -- --recursive -j10; done'
# ditto last #
alias ghripall='for i in $(gh repo list $(basename $PWD) -L 9999 --json name | jq -r ".[].name"); do gh repo clone $(basename $PWD)/$i -- --recursive -j10; done'