public
Description: A Twitter archiver, making tweets safe for historians.
Clone URL: git://github.com/mja/aviary.git
aviary / cat_statuses.sh
100755 6 lines (4 sloc) 0.2 kb
1
2
3
4
5
6
#!/bin/sh
 
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<statuses type=\"array\">"
for i in $SCREEN_NAME/*.xml; do sed 's/<?xml version="1.0" encoding="UTF-8"?>//' < $i; done;
echo "</statuses>"