Skip to content

Instantly share code, notes, and snippets.

@Mr-Un1k0d3r
Created November 7, 2017 16:14
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Mr-Un1k0d3r/11bf902555d401c92c2e1b766275e6a2 to your computer and use it in GitHub Desktop.
Save Mr-Un1k0d3r/11bf902555d401c92c2e1b766275e6a2 to your computer and use it in GitHub Desktop.
Lazy website cloning
#!/bin/bash
echo "Cloning $1"
wget $1 -O index.html &> /dev/null
TAG="<base href=\"$1\"/></head>"
sed '/<\/head>/i\'"$TAG" index.html | tee index.html &> /dev/null
echo "index.html was saved and modified"
@Mr-Un1k0d3r
Copy link
Author

Run this script in your webroot folder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment