mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 00:05:10 +01:00
8 lines
202 B
Bash
8 lines
202 B
Bash
#!/bin/bash
|
|
# apt install ocrmypdf
|
|
if [ "$1" != "" ]; then
|
|
nice -20 ocrmypdf --redo-ocr --pdfa-image-compression lossless --output-type pdfa-2 "$1" "$1"
|
|
else
|
|
echo "No filename given"
|
|
fi
|