Shell-script - Find recent earthquakes in bay area, To see today's earthquake
Find recent earthquakes in bay area
lynx --width=200 --dump 'http://quake.usgs.gov/recenteqs/Maps/San_Francisco_eqs.htm' | sed -ne '/MAG.*/,/^References/{;s/\[[0-9][0-9]*\]//;1,/h:m:s/d;/Back to map/,$d;/^$/d;/^[ \t][ \t]*[3-9]\.[0-9][0-9]*[ \t][ \t]*/p; }' | sort -k1nr
To see only earthquakes for today, add another pipe to egrep "`date '+%Y/%m/%d'`"
The topic on Shell-script - Find recent earthquakes in bay area is posted by - Malu
Hope you have enjoyed, Shell-script - Find recent earthquakes in bay areaThanks for your time