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.

6 lines
286 B

#!/bin/bash
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' > urls/$sitedomain.urls
rm geturls.tmp
rm -r $sitedomain