#!/bin/sh USER=andy_mortimer NOW=`date '+%Y-%m-%d-%H-%M-%S'` echo "Backing up $USER for $NOW" #wget -O user_timeline.xml http://twitter.com/statuses/user_timeline/$USER.xml wget -O followers.xml.$$ http://twitter.com/statuses/followers/$USER.xml perl follower-list.pl followers.xml.$$ > data/followers-$NOW.txt rm followers.xml.$$