Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save h1kkan/f18b7fadb87e7fc7df7e7b8fa93e2673 to your computer and use it in GitHub Desktop.
Save h1kkan/f18b7fadb87e7fc7df7e7b8fa93e2673 to your computer and use it in GitHub Desktop.
sitemap.xml to .txt list of urls one liner, used with siege
php -r '$x=new SimpleXMLElement(file_get_contents("sitemap.xml"));foreach($x->url as $n) echo $n->loc.PHP_EOL;' > urls.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment