2x shell scripts showing results from EPL & SPL require w3m
--------------------------------start-------------------------------------
#!/bin/bash
#resultepl
#black=`tput setaf 0`
red=`tput setaf 1`
green=`tput setaf 2`
yellow=`tput setaf 3`
blue=`tput setaf 4`
#magenta=`tput setaf 5`
cyan=`tput setaf 6`
red=`tput setaf 1`
norm=`tput sgr0`

bold=`tput bold`
#ulbegin=`tput smul`
#ulend=`tput rmul`

ser="$cyan"
name="$bold$cyan"
tput setaf 1
echo -e "\e[3mEnglish Premiership\e[23m"
w3m http://www.livescores.com/soccer/england/premier-league/ | sed -n '236,279p'  
exit


--------------------------------end---------------------------------------------

---------------------------------start------------------------------------------

#!/bin/bash
#resultspl
#black=`tput setaf 0`
red=`tput setaf 1`
green=`tput setaf 2`
yellow=`tput setaf 3`
blue=`tput setaf 4`
#magenta=`tput setaf 5`
cyan=`tput setaf 6`
red=`tput setaf 1`
norm=`tput sgr0`

bold=`tput bold`
#ulbegin=`tput smul`
#ulend=`tput rmul`

ser="$cyan"
name="$bold$cyan"
tput setaf 1
echo -e "\e[3mScottish Premiership\e[23m"
w3m http://www.livescores.com/soccer/scotland/premier-league/ | sed -n '220,247p'  
exit

------------------------------------------------------end--------------------------------------