Edit PDF metadata: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 4: | Line 4: | ||
View specific metadata: | View specific metadata: | ||
# exiftool -Creator file.pdf | # exiftool -Creator file.pdf | ||
# find . -type f -iname '*.pdf' -exec exiftool -Creator {} \; | |||
Set metadata: | Set metadata: | ||
# exiftool -Creator='barbapappa' file.pdf | # exiftool -Creator='barbapappa' file.pdf | ||
# find . -type f -iname '*.pdf' -exec exiftool -Creator='barbapappa' {} \; |
Revision as of 14:54, 25 June 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' {} \;