view bin/qpdf @ 133:660dc255542a

parameterise the temp file and move it to /dev/shm
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Wed, 14 Jul 2021 16:49:35 +0000
parents 551ff1de13d8
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