Skip to content

Commit

Permalink
docs: Improve batch command
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed Nov 7, 2024
1 parent 116e269 commit f052e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/batch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ place, and printing each filename in between runs:

.. code-block:: bash
find . -printf '%p\n' -name '*.pdf' -exec ocrmypdf '{}' '{}' \;
find . -name '*.pdf' -printf '%p\n' -exec ocrmypdf '{}' '{}' \;
This only runs one ``ocrmypdf`` process at a time. This variation uses
``find`` to create a directory list and ``parallel`` to parallelize runs
Expand Down

0 comments on commit f052e91

Please sign in to comment.