Skip to content

Instantly share code, notes, and snippets.

@ngandrass
Created January 19, 2022 06:34
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 ngandrass/fd79b53236d73feb0e13253735e2012f to your computer and use it in GitHub Desktop.
Save ngandrass/fd79b53236d73feb0e13253735e2012f to your computer and use it in GitHub Desktop.
bash/zsh shell aliases for PDF rotation via pdfjam: pdf90, pdf180, pdf270
# Alias definitions to rotate PDF documents
# These useful aliases were removed from pdfjam since version 3.02
alias pdf90="pdfjam --landscape --angle 90"
alias pdf180="pdfjam --angle 180"
alias pdf270="pdfjam --landscape --angle 270"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment