Skip to content

Instantly share code, notes, and snippets.

@emjayoh
Created April 19, 2021 06:53
Show Gist options
  • Save emjayoh/6ca00617939e1254d877259e2058cfa3 to your computer and use it in GitHub Desktop.
Save emjayoh/6ca00617939e1254d877259e2058cfa3 to your computer and use it in GitHub Desktop.
[Get open directory] reddit.com/r/opendirectories #opendir #bash #wget #files #download
wgetod() {
NSLASH="$(echo "$1" | perl -pe 's|.*://[^/]+(.*?)/?$|\1|' | grep -o / | wc -l)"
NCUT=$((NSLASH > 0 ? NSLASH-1 : 0))
wget -r -nH --user-agent=Mozilla/5.0 --cut-dirs=$NCUT --no-parent --reject="index.html*" "$1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment