1
0
mirror of https://github.com/bitwarden/help synced 2025-12-16 08:13:28 +00:00

Mention how the --raw option affects bw export (#363)

This commit is contained in:
Paul Lettington
2021-01-25 15:35:47 +00:00
committed by GitHub
parent 40739acf79
commit 0d75dd6ae6

View File

@@ -333,7 +333,7 @@ bw import bitwardencsv ./file.csv
### Export ### 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`. Valid format values are `csv`, `json`, and `encrypted_json`.
@@ -342,6 +342,7 @@ bw export [password] [--output <filePath>] [--format <format>] [--organizationid
``` ```
``` ```
bw export bw export
bw --raw export
bw export --format csv bw export --format csv
bw export myPassword321 --output ./backups/ bw export myPassword321 --output ./backups/
bw export myPassword321 --output ./my_backup.json --format json bw export myPassword321 --output ./my_backup.json --format json