12345678910111213141516 |
- #!/bin/bash
- #
- # Script to shuffle around tweets so that we can always have something
- # interesting to talk about in the social networks.
- #
- # Based off of the comment generator
- #
- TWEET_DB="tweets.db"
- # Choose a random tweet from the list, then mark it as "used."
- # Go to the next one, repeat.
- # When all of these are used. Mark them all as unread and start again.
- sqlite3 "$TWEET_DB" < create.sql
|