Linux - How to see cricket score from command line, Unix command to watch cricket
How to see cricket score from command line
You can watch the cricket score from command line.
wget --quiet -O - http://livechat.rediff.com/sports/score/score.txt | sed -e s/l1/Match/ -e s/l2/BattingTeam/ -e s/message/Score/ -e s/tagline/Batsman/ | grep -v "^interval" | grep -v "^ver"
The above command will read the cricket score from the following text file and will print the result(http://livechat.rediff.com/sports/score/score.txt)
The topic on Linux - How to see cricket score from command line is posted by - Patel
Hope you have enjoyed, Linux - How to see cricket score from command lineThanks for your time