From 3e9d0b78dd74cf52163df345463d9d960d9d9001 Mon Sep 17 00:00:00 2001 From: Paul Lettington Date: Thu, 21 Jan 2021 16:36:07 +0000 Subject: [PATCH] Clarify help text for --raw option to bw export (#218) --- src/program.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/program.ts b/src/program.ts index 429ad3815b..2b0a27d7a4 100644 --- a/src/program.ts +++ b/src/program.ts @@ -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');