in reply to Help with my Crawler

Note that you could do the same with wget wrapped in a trivial shell script:
#!/usr/bin/sh DSTaddress=www.example.com echo "Welcome ..." read URL wget -qO- http://$DSTaddress/"$URL"
Of, if you insist in using Perl, using LWP::Simple.