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