cs1520: lab 2 ============= 1. Word Count ------------- The following text file contains a list of words (one per line): http://www.cs.pitt.edu/~ygl2/cs1520/words.txt write a perl program to read this file and display the frequency count of each word. 2. downloading webpages ----------------------- Use the following code to get the content of a webpage: use LWP::Simple; $content = get("http://www.google.com"); die("could not get webpage!") unless defined $content; print "$content\n"; 3. Parsing Webpages ------------------- The following simple html file contains some information about world cup soccer: http://www.cs.pitt.edu/~ygl2/cs1520/worldcup.html Download the page using the get function, parse out the information from the second table, and display it to the console.