Edit PDF metadata: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 11: | Line 11: | ||
to preserve date/time: | to preserve date/time: | ||
- | -P | ||
# find . -type f -iname '*.pdf' -exec exiftool -Producer='www.reeltoreel.nl' {} \; | # find . -type f -iname '*.pdf' -exec exiftool -Producer='www.reeltoreel.nl' {} \; | ||
# find . -type f -iname '*.pdf' -exec exiftool -Creator='Philip van der Matten' {} \; | # find . -type f -iname '*.pdf' -exec exiftool -Creator='Philip van der Matten' {} \; |
Revision as of 12:50, 12 September 2024
View PDF metadata:
# exiftool file.pdf
View specific metadata:
# exiftool -Creator file.pdf # find . -type f -iname '*.pdf' -exec exiftool -Creator {} \;
Set metadata:
# exiftool -Creator='barbapappa' file.pdf # find . -type f -iname '*.pdf' -exec exiftool -Creator='barbapappa' {} \;
to preserve date/time:
-P
# find . -type f -iname '*.pdf' -exec exiftool -Producer='www.reeltoreel.nl' {} \; # find . -type f -iname '*.pdf' -exec exiftool -Creator='Philip van der Matten' {} \;