summaryrefslogtreecommitdiff
path: root/scripts/conv-pdftotext
blob: 680f804ea02f1b8659ae8ab3e62c2b67714f203f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# Script optimised to run from within dhelp's swish++.conf.
# That means:
# * No error checking on parameters; edit swish++.conf the right way.
# * Spit output only on errors (a line pointing to input file).
#
# $1 = Input file, $2 = Output file

2>/dev/null pdftotext "${1}" "${2}"
EXITVAL=$?
if [ ${EXITVAL} -ne 0 ]; then
	echo "Error converting file: ${1}"
fi
exit ${EXITVAL}