#!/bin/bash # By Nat Welch # Puts your twitter status in the .project file # so when you finger username, their twitter status is there. VAR1="Twitter Status: "; VAR2=`curl -s -u username:userpassword http://twitter.com/users/show/username.xml | egrep text\> | cut -d \< -f 2 | cut -b 6-`; echo $VAR1 $VAR2 > ~/.project; chmod 755 ~/.project;