Last active
February 28, 2018 18:03
Extract all URLs from a sitemap to plan text
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
#!/bin/sh | |
# Replace the website for your own, and you can extract all sitemap files from a parent sitemap file. | |
# | |
# Into their own individual sitemap section files: | |
number=1; | |
for i in $(curl https://website.com/sitemap.xml | sitemap-urls); | |
do curl -s -N $i | sitemap-urls > ~/Desktop/sitemap-output/map-$number.txt; | |
number=$(($number+1)); | |
done | |
# Into one massive sitemap file | |
for i in $(curl https://website.com/sitemap.xml | sitemap-urls); | |
do curl -s -N $i | sitemap-urls >> ~/Desktop/sitemap-output/merged.txt; | |
done | |
# Merge the output files | |
for i in $(ls ~/Desktop/sitemap-output/); do cat $i >> merged.txt; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment