Bash
如何通過終端將文件 ID 或 ID 設置為 PDF 文件?
您好我正在編寫一個 bash 腳本,該腳本必須為 pdf 文件提供 ID。這個怎麼解決,有沒有辦法?使用 bash shell 的範例。
文件 ID 為:
$ exiftool example.pdf | grep 'Document ID' Document ID : uuid:d037451d-240e-4d82-ba6d-92390b1d2962
例如:
$ pdftool --setDocID "newID" example.pdf
exiftool -DocumentID="uuid:$newID" example.pdf
見例子
man exiftool