Watch Digg RSS Headlines From Terminal
Wouldn’t it be nice if you could just watch rss headline from digg (or any website) by just typing “digg” in your terminal?
Like this:
I used this shell script to achieve this:
#!/bin/sh
if [ $# -eq 1 ] ; then
headarg=$(( $1 * 2 )) # $(( )) specifies that you’re using an equation
else
headarg=”-20″ # default is four [...]
