woozle.org/derby/install

12 lines
185 B
Plaintext
Raw Normal View History

2014-08-27 16:53:08 -06:00
#! /bin/sh
DESTDIR=${1:-/srv/http/woozle.org/derby}
for src in *.ps; do
target=$DESTDIR/${src%.ps}.pdf
if older $target $src; then
echo "PDF $src"
pstopdf $src $target
fi
done