diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-04-08 15:51:47 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-04-08 15:51:51 -0700 |
commit | 1552f5dcd8b0abe89f53182c7a495a7b8dc008fc (patch) | |
tree | 58c149fca56a814b3d7b46e80f5ce618e7a64380 /bin/make_dir_derivatives.sh | |
parent | 656da2ece557024c9fc3ca6df9c87caf73741a6c (diff) | |
download | fatcat-covid19-1552f5dcd8b0abe89f53182c7a495a7b8dc008fc.tar.gz fatcat-covid19-1552f5dcd8b0abe89f53182c7a495a7b8dc008fc.zip |
helper bash scripts for PDF derivatives
These are lazy (won't run derive process if output already exists),
which makes the process much faster
Diffstat (limited to 'bin/make_dir_derivatives.sh')
-rwxr-xr-x | bin/make_dir_derivatives.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/make_dir_derivatives.sh b/bin/make_dir_derivatives.sh new file mode 100755 index 0000000..c33d75d --- /dev/null +++ b/bin/make_dir_derivatives.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +set -e -u -o pipefail + +export FULLTEXTDIR=$1 + +if [ ! -d $FULLTEXTDIR ]; then + echo "Directory does not exist: $FULLTEXTDIR" + exit -1 +fi + +# make directories +ls $FULLTEXTDIR/pdf/ | parallel mkdir -p $FULLTEXTDIR/pdftotext/{} +ls $FULLTEXTDIR/pdf/ | parallel mkdir -p $FULLTEXTDIR/thumbnail/{} + +fd -I .pdf $FULLTEXTDIR/pdf/ | sed "s/\.pdf//g" | cut -d/ -f3-4 | parallel -j10 ./bin/make_pdf_derivatives.sh $FULLTEXTDIR {} |