Skip to content
Snippets Groups Projects
Commit b7ed783a authored by Ilya Grishnov's avatar Ilya Grishnov Committed by Alexander Turenko
Browse files

tarantoolctl: add man of flag --format for cat

Added a description for the --format flag
of the tarantoolctl cat command.

Fixes #7099

NO_DOC=bugfix
NO_TEST=help message fix
parent e27ddf70
No related branches found
No related tags found
No related merge requests found
## bugfix/tarantoolctl
* Fix missing description for the `--format` flag of the tarantoolctl cat command.
......@@ -1154,7 +1154,8 @@ local commands = setmetatable({
func = exit_wrapper(cat), process = process_remote, help = {
header =
"%s cat FILE.. [--space=space_no ..] [--show-system]" ..
" [--from=from_lsn] [--to=to_lsn] [--replica=replica_id ..]",
" [--from=from_lsn] [--to=to_lsn] [--replica=replica_id ..]" ..
" [--format=format_name]",
description =
[=[
Print into stdout the contents of .snap/.xlog files.
......@@ -1167,6 +1168,8 @@ local commands = setmetatable({
* --to=to_lsn to show operations ending with the given lsn.
* --replica=replica_id to filter the output by replica id.
May be passed more than once.
* --format=format_name to indicate format.
Defaults to 'yaml', can also be 'json' or 'lua'.
]=],
weight = 90,
deprecated = false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment