op: add page (#10717)

* op: add page

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
pull/23/head
wangme88 2023-09-12 21:34:40 -04:00 committed by GitHub
parent eca9c1e539
commit af0b9b98de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
pages/common/op.md Normal file
View File

@ -0,0 +1,36 @@
# op
> Official CLI for 1Password's desktop app.
> More information: <https://developer.1password.com/docs/cli/reference>.
- Sign in to a 1Password account:
`op signin`
- List all vaults:
`op vault list`
- Print item details in JSON format:
`op item get {{item_name}} --format json`
- Create a new item with a category in the default vault:
`op item create --category {{category_name}}`
- Print a referenced secret to `stdout`:
`op read {{secret_reference}}`
- Pass secret references from exported environment variables to a command:
`op run -- {{command}}`
- Pass secret references from an environment file to a command:
`op run --env-file {{path/to/env_file.env}} -- {{command}}`
- Read secret references from a file and save plaintext secrets to a file:
`op inject --in-file {{path/to/input_file}} --out-file {{path/to/output_file}}`