You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
354 B

#!/bin/bash
echo "Slurping URLs ..."
echo
sitedomain=$1
wget --spider --recursive --level=inf --no-verbose --output-file=geturls.tmp $sitedomain
grep -i URL geturls.tmp | awk -F 'URL:' '{print $2}' | awk '{$1=$1};1' | awk '{print $1}' | sort -u | sed '/^$/d' > $sitedomain.urls
rm geturls.tmp
rm -r $sitedomain
echo "Done !"
echo
ls -lArth | grep *.urls