Skip to content

Instantly share code, notes, and snippets.

@zgulde
Created June 2, 2020 16:15
Show Gist options
  • Save zgulde/5cc7afccaacc93de6a7277dcc42db3c5 to your computer and use it in GitHub Desktop.
Save zgulde/5cc7afccaacc93de6a7277dcc42db3c5 to your computer and use it in GitHub Desktop.

Editing PDF Metadata on the command line in MacOS

  1. Install exiftool

    brew install exiftool
    
  2. View the current document metadata

    exiftool my_resume.pdf
    
  3. Change the metadata

    exiftool -Title='Some new resume title' my_resume.pdf
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment