: Script to get the permanent subscription re-processed on next batch

BATCHDIR=/lg/lib/news/feed
cd $BATCHDIR

# for each site

for site in * ; do
	if test -r $site/subscription ; then
		ln $site/subscription $site/new_feed
	fi
done

