Varied an existing script to show the NCAA college football standings. It is not formatted yet as I can get what I want without formatting. It is pretty much the same script to get the scores, but using a different web page to gather data. [code] ################################### # Score Grabber # #=============================== # Assignments # -------------------------------- datafile="tcf" let "flag = 0" let "year = 2014" let "week = 14" if [ "$week" -lt "10" ]; then let "a = 0" fi # end assignments #================================= # # Get data file #--------------------------------- elinks -dump "www.ncaa.com/standings/football/fbs/" > $datafile IFS='%' #================================= # # Extract and display data #--------------------------------- while read line do fdata[$a]=$line echo $line | grep -q "Atlantic Coast" if [...