Skip to content

Instantly share code, notes, and snippets.

@Mr-Un1k0d3r
Created November 7, 2017 16:14
Show Gist options
  • Select an option

  • Save Mr-Un1k0d3r/11bf902555d401c92c2e1b766275e6a2 to your computer and use it in GitHub Desktop.

Select an option

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"
@chango77747
Copy link
Copy Markdown

Like a boss!

@Mr-Un1k0d3r
Copy link
Copy Markdown
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