Created
January 19, 2022 06:34
-
-
Save ngandrass/fd79b53236d73feb0e13253735e2012f to your computer and use it in GitHub Desktop.
bash/zsh shell aliases for PDF rotation via pdfjam: pdf90, pdf180, pdf270
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
# 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