From 97240de0c985f97102b30303609308dbe3284cd0 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Fri, 2 Aug 2019 22:39:35 +0200 Subject: [PATCH] btrbk: add -L, --long options (shortcut for --format=long) --- btrbk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/btrbk b/btrbk index 41084be..0256e86 100755 --- a/btrbk +++ b/btrbk @@ -335,6 +335,7 @@ options: -q, --quiet be quiet (do not print backup summary) -l, --loglevel=LEVEL set logging level (warn, info, debug, trace) -t, --table change output to table format + -L, --long change output to long format --format=FORMAT change output format, FORMAT=table|long|raw -S, --print-schedule print scheduler details (for the "run" command) --progress show progress bar on send-receive operation @@ -4889,6 +4890,7 @@ MAIN: 'loglevel|l=s' => \$loglevel, 'progress' => \$show_progress, 'table|t' => sub { $output_format = "table" }, + 'long|L' => sub { $output_format = "long" }, 'format=s' => \$output_format, 'print-schedule|S' => \$print_schedule, 'lockfile=s' => \$lockfile_cmdline,