2 examples for lynx
# extract all links from a website | cut off numbers lynx -dump -listonly example.com | perl -pe 's/\s*[0-9]+\.\s//'
# extract all links from a website | cut off numbers lynx -dump -listonly example.com | perl -pe 's/\s*[0-9]+\.\s//'