#!/bin/bash # Joe Gillotti - 4/19/2012 total=`wget -O - -q http://www.redtube.com/channels | egrep '[0-9]+ Videos' | cut -dV -f1 | tr -d , | sed 's/[[:space:]]//g' | sed 's/$/ +/g' | xargs | sed 's/+$//g' | bc -l` # :D withBadassCommas=`echo $total | rev | sed 's/\([0-9]\{3\}\)/\1,/g' | rev` echo Total number of vids on redtube is $withBadassCommas