Updated Pre Consume Script Examples (markdown)

Trenton H 2022-11-23 09:57:44 -08:00
parent 30ebfaf8e6
commit b24d2a09db

@ -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"
```