Skip to content

Instantly share code, notes, and snippets.

@shoeper
Forked from sneakers-the-rat/clean_pdf.sh
Created January 26, 2022 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shoeper/41fa055b6390bf0757bed0fe7ced7c44 to your computer and use it in GitHub Desktop.
Save shoeper/41fa055b6390bf0757bed0fe7ced7c44 to your computer and use it in GitHub Desktop.
Strip PDF Metadata
# --------------------------------------------------------------------
# Recursively find pdfs from the directory given as the first argument,
# otherwise search the current directory.
# Use exiftool and qpdf (both must be installed and locatable on $PATH)
# to strip all top-level metadata from PDFs.
#
# Note - This only removes file-level metadata, not any metadata
# in embedded images, etc.
#
# Code is provided as-is, I take no responsibility for its use,
# and I make no guarantee that this code works
# or makes your PDFs "safe," whatever that means to you.
#
# You may need to enable execution of this script before using,
# eg. chmod +x clean_pdf.sh
#
# example:
# clean current directory:
# >>> ./clean_pdf.sh
#
# clean specific directory:
# >>> ./clean_pdf.sh some/other/directory
# --------------------------------------------------------------------
# Color Codes so that warnings/errors stick out
GREEN="\e[32m"
RED="\e[31m"
CLEAR="\e[0m"
# loop through all PDFs in first argument ($1),
# or use '.' (this directory) if not given
DIR="${1:-.}"
echo "Cleaning PDFs in directory $DIR"
# use find to locate files, pip to while read to get the
# whole line instead of space delimited
# Note -- this will find pdfs recursively!!
find $DIR -type f -name "*.pdf" | while read -r i
do
# output file as original filename with suffix _clean.pdf
TMP=${i%.*}_clean.pdf
# remove the temporary file if it already exists
if [ -f "$TMP" ]; then
rm "$TMP";
fi
exiftool -q -q -all:all= "$i" -o "$TMP"
qpdf --linearize --replace-input "$TMP"
echo -e $(printf "${GREEN}Processed ${RED}${i} ${CLEAR}as ${GREEN}${TMP}${CLEAR}")
done
@shoeper
Copy link
Author

shoeper commented Jan 26, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment