view bin/qpdf @ 143:ddff993994be

too clever by half, keys won't work in parallel for e.g. media types
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Wed, 20 Oct 2021 15:47:55 +0000
parents 660dc255542a
children
line wrap: on
line source

#!/usr/bin/bash
G=/lustre/home/dc007/hst/gentoo
TF=/dev/shm/hst/xxx.pdf
if [ "${!#}" = "-" ]
then
 cat > $TF
 LD_LIBRARY_PATH=$G/usr/lib $G/usr/bin/qpdf "${@:1:${#}-1}" $TF
else
 LD_LIBRARY_PATH=$G/usr/lib $G/usr/bin/qpdf "$@"
fi