Assignment Six

This assignment is to write a script to use the ncaa2007.data file to calculate the winner of the NCAA basketball tournament given a year. The script should have a while loop that prompts the user for a year between 1939 and 2007 or the word quit to stop. Check to make sure the input is in the proper range. The winner of a particular year is the team with the most wins. The grep command can be used to get the results for a year. For example grep ^1994 ncaa2007.data will list all games for 1994. Use the idea from Assignment Four to get the team with the most wins and display it. Also use the clear and tput cup commands to position the prompts and display them "nicely" on the screen. An example will be shown in class. This assignment is due November 7th at class time. Hand in a printout of the script.