wget magic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download all files from a given online directory | |
# into the a local directory without mirroring the | |
# folder structure | |
wget -A <accepted only extensions> -r -l <levels of depth> -nd http://domain.com/folder/ | |
wget -R <all except X> -r -l <levels of depth> -n http://domain.com/folder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment