mirror of https://github.com/digint/btrbk
btrbk: add -L, --long options (shortcut for --format=long)
parent
66d15d1d64
commit
97240de0c9
2
btrbk
2
btrbk
|
@ -335,6 +335,7 @@ options:
|
||||||
-q, --quiet be quiet (do not print backup summary)
|
-q, --quiet be quiet (do not print backup summary)
|
||||||
-l, --loglevel=LEVEL set logging level (warn, info, debug, trace)
|
-l, --loglevel=LEVEL set logging level (warn, info, debug, trace)
|
||||||
-t, --table change output to table format
|
-t, --table change output to table format
|
||||||
|
-L, --long change output to long format
|
||||||
--format=FORMAT change output format, FORMAT=table|long|raw
|
--format=FORMAT change output format, FORMAT=table|long|raw
|
||||||
-S, --print-schedule print scheduler details (for the "run" command)
|
-S, --print-schedule print scheduler details (for the "run" command)
|
||||||
--progress show progress bar on send-receive operation
|
--progress show progress bar on send-receive operation
|
||||||
|
@ -4889,6 +4890,7 @@ MAIN:
|
||||||
'loglevel|l=s' => \$loglevel,
|
'loglevel|l=s' => \$loglevel,
|
||||||
'progress' => \$show_progress,
|
'progress' => \$show_progress,
|
||||||
'table|t' => sub { $output_format = "table" },
|
'table|t' => sub { $output_format = "table" },
|
||||||
|
'long|L' => sub { $output_format = "long" },
|
||||||
'format=s' => \$output_format,
|
'format=s' => \$output_format,
|
||||||
'print-schedule|S' => \$print_schedule,
|
'print-schedule|S' => \$print_schedule,
|
||||||
'lockfile=s' => \$lockfile_cmdline,
|
'lockfile=s' => \$lockfile_cmdline,
|
||||||
|
|
Loading…
Reference in New Issue