Skip to content

Instantly share code, notes, and snippets.

@astrolitterbox
Created January 23, 2019 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astrolitterbox/d0f336a72ad0275684519ef7e8a7f048 to your computer and use it in GitHub Desktop.
Save astrolitterbox/d0f336a72ad0275684519ef7e8a7f048 to your computer and use it in GitHub Desktop.
Batch rotating pdf files in a repository by 180 degrees
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