mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 22:42:08 +02:00
12 lines
358 B
Markdown
12 lines
358 B
Markdown
# codesign
|
|
|
|
> Create and manipulate code signatures for macOS.
|
|
> More information: <https://keith.github.io/xcode-man-pages/codesign.1.html>.
|
|
|
|
- Sign an application with a certificate:
|
|
|
|
`codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}`
|
|
|
|
- Verify the certificate of an application:
|
|
|
|
`codesign --verify {{path/to/application_file.app}}`
|