diff --git a/Pre-Consume-Script-Examples.md b/Pre-Consume-Script-Examples.md index e760594..72dbe38 100644 --- a/Pre-Consume-Script-Examples.md +++ b/Pre-Consume-Script-Examples.md @@ -34,4 +34,16 @@ if [ -n "$NON_BLANK" ]; then NON_BLANK=$(echo $NON_BLANK | tr ' ' ",") qpdf "$IN" --replace-input --pages . $NON_BLANK -- fi +``` + +## Cleaning with `qpdf` + +- :warning: **This script modifies the original file** +- Useful for correcting certain structural issues with PDFs + +```bash +#!/usr/bin/env bash + +qpdf --replace-input "$DOCUMENT_SOURCE_PATH" + ``` \ No newline at end of file