1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 16:35:28 +02:00

codesign: add page (#1523)

This commit is contained in:
Starbeamrainbowlabs 2017-11-08 19:33:46 +00:00 committed by GitHub
commit 4d7c7de5bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
pages/osx/codesign.md Normal file
View file

@ -0,0 +1,11 @@
# codesign
> Create and manipulate code signatures for macOS.
- Sign an application with a certificate:
`codesign -s {{"My Company Name"}} {{/path/to/App.app}}`
- Verify the certificate of an application:
`codesign -v {{/path/to/App.app}}`