1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-19 02:51:14 +02:00

Clarify help text for --raw option to bw export (#218)

This commit is contained in:
Paul Lettington 2021-01-21 16:36:07 +00:00 committed by GitHub
parent 4655762975
commit 3e9d0b78dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -548,12 +548,13 @@ export class Program extends BaseProgram {
writeLn('');
writeLn(' Valid formats are `csv`, `json`, `encrypted_json`. Default format is `csv`.');
writeLn('');
writeLn(' If raw output is specified and no output filename or directory is given, the');
writeLn(' If --raw option is specified and no output filename or directory is given, the');
writeLn(' result is written to stdout.');
writeLn('');
writeLn(' Examples:');
writeLn('');
writeLn(' bw export');
writeLn(' bw --raw export');
writeLn(' bw export myPassword321');
writeLn(' bw export myPassword321 --format json');
writeLn(' bw export --output ./exp/bw.csv');