1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

Cmdline: Rename "notimestamps" to "no-timestamps"

That aligns better with the other options.

Signed-off-by: Kai Krakow <kai@kaishome.de>
This commit is contained in:
Kai Krakow 2018-01-19 20:55:42 +01:00 committed by Zygo Blaxell
parent af250f7732
commit b164717a25
2 changed files with 3 additions and 3 deletions

View File

@ -514,7 +514,7 @@ Command Line Options
read performance for spinning media. Maximizes temporary space usage.
* --timestamps (-t)
* Enable timestamps in log output.
* --notimestamps (-T)
* --no-timestamps (-T)
* Disable timestamps in log output.
* --absolute-paths (-p)
* Paths in log output will be absolute.

View File

@ -45,7 +45,7 @@ do_cmd_help(char *argv[])
"\t-C, --thread-factor\tWorker thread factor (default " << BEES_DEFAULT_THREAD_FACTOR << ")\n"
"\t-m, --scan-mode\tScanning mode (0..1, default 0)\n"
"\t-t, --timestamps\tShow timestamps in log output (default)\n"
"\t-T, --notimestamps\tOmit timestamps in log output\n"
"\t-T, --no-timestamps\tOmit timestamps in log output\n"
"\t-p, --absolute-paths\tShow absolute paths (default)\n"
"\t-P, --relative-paths\tShow paths relative to $CWD\n"
"\n"
@ -657,7 +657,7 @@ bees_main(int argc, char *argv[])
{ "thread-factor", required_argument, NULL, 'C' },
{ "scan-mode", required_argument, NULL, 'm' },
{ "timestamps", no_argument, NULL, 't' },
{ "notimestamps", no_argument, NULL, 'T' },
{ "no-timestamps", no_argument, NULL, 'T' },
{ "absolute-paths", no_argument, NULL, 'p' },
{ "relative-paths", no_argument, NULL, 'P' },
{ "help", no_argument, NULL, 'h' }