#!/bin/csh -f # # Put each Twitter account and password pairs seperated by colons # with a space in between # foreach acct ( kevininscoe:################# KE3VIN:############ ) setenv twitter `echo $acct | awk -F: '{ print $1 }'` setenv twpass `echo $acct | awk -F: '{ print $2 }'` echo "Tweeting to $twitter" /home/kinscoe/bin/tweet.pl "$1" end