Created
January 23, 2019 18:59
-
-
Save astrolitterbox/d0f336a72ad0275684519ef7e8a7f048 to your computer and use it in GitHub Desktop.
Batch rotating pdf files in a repository by 180 degrees
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in *.PDF; do | |
pdftk $file cat 1-endsouth output $file"_rot.pdf" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment