From af0b9b98de68629a5074bdb7459b3470a7e9921f Mon Sep 17 00:00:00 2001 From: wangme88 <50501950+wangme88@users.noreply.github.com> Date: Tue, 12 Sep 2023 21:34:40 -0400 Subject: [PATCH] op: add page (#10717) * op: add page --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/common/op.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/op.md diff --git a/pages/common/op.md b/pages/common/op.md new file mode 100644 index 0000000000..3d2b7ed7ff --- /dev/null +++ b/pages/common/op.md @@ -0,0 +1,36 @@ +# op + +> Official CLI for 1Password's desktop app. +> More information: . + +- 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}}`