From 0d75dd6ae6ccccf7ec664d546551f7d01b0eb680 Mon Sep 17 00:00:00 2001 From: Paul Lettington Date: Mon, 25 Jan 2021 15:35:47 +0000 Subject: [PATCH] Mention how the --raw option affects bw export (#363) --- _articles/miscellaneous/cli.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_articles/miscellaneous/cli.md b/_articles/miscellaneous/cli.md index dfdc2bb1..82d2c528 100644 --- a/_articles/miscellaneous/cli.md +++ b/_articles/miscellaneous/cli.md @@ -333,7 +333,7 @@ bw import bitwardencsv ./file.csv ### Export -The `export` command allows you to export your Vault data as plaintext `.json` or `.csv` files, or as a `.json` [Encrypted Export]({% link _articles/importing/encrypted-export.md %}). +The `export` command allows you to export your Vault data as plaintext `.json` or `.csv` files, or as a `.json` [Encrypted Export]({% link _articles/importing/encrypted-export.md %}). You can pass the `--raw` option to receive your export on stdout instead of a file. Valid format values are `csv`, `json`, and `encrypted_json`. @@ -342,6 +342,7 @@ bw export [password] [--output ] [--format ] [--organizationid ``` ``` bw export +bw --raw export bw export --format csv bw export myPassword321 --output ./backups/ bw export myPassword321 --output ./my_backup.json --format json