#!/bin/sh name="kazmuzik" date=`date +"%Y%m%d"` tmpfile="tmp-${date}.xml" xmlfile="${name}-${date}.xml" url="http://twitter.com/statuses/user_timeline.xml" curl "${url}?screen_name=${name}&count=200&page=1" > $tmpfile n=`cat $tmpfile | wc -l` n=`expr $n - 1` head -$n $tmpfile > $xmlfile rm -f $tmpfile curl "${url}?screen_name=${name}&count=200&page=2" | tail +3 >> $xmlfile |
かなり手抜きしたので、400個を超えたら、また修正する必要があります。しかし、そ
Tags: programming