Add an update-posts script.

This commit is contained in:
Simon Quigley 2019-04-19 18:26:16 -05:00
parent 97c844def9
commit 67448dff3a

5
update-posts Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
for post in `cat post-list`; do
./update-post $post;
done