Last active
November 16, 2015 18:39
-
-
Save bluemanos/e699c886a10f38182769 to your computer and use it in GitHub Desktop.
Download page with CSS/JS/IMG folder structure
This file contains hidden or 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
# recursive download all page and linked subpages | |
wget -p -N -r -np http://url-to-download.com/page/ | |
# mass rename files | |
rename -v 's/\.php/\.html/' *.php | |
# batch replace text in files (recursive) | |
find . -type f -exec sed -i 's/.php/.html/g' {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment