Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions librz/core/cmd_descs/cmd_descs.c
Original file line number Diff line number Diff line change
Expand Up @@ -20906,8 +20906,8 @@ static const RzCmdDescHelp grep_help = {
};

static const RzCmdDescDetailEntry specifiers_Table_space_format_space_specifiers_space__oparen__minor_table_spec_greater__cparen__detail_entries[] = {
{ .text = "<col>/sort/<inc|dec>", .arg_str = NULL, .comment = "Sort table by column <col> in increasing or decreasing order." },
{ .text = "<col>/sortlen/<inc|dec>", .arg_str = NULL, .comment = "Sort table length of column <col> in increasing or decreasing order." },
{ .text = "<col>/sort/rev", .arg_str = NULL, .comment = "Sort table by column <col> in reverse order." },
{ .text = "<col>/sortlen/rev", .arg_str = NULL, .comment = "Sort table by column <col> length in reverse order." },
{ .text = "<col>/cols[/<col2>[/<col3>...]]", .arg_str = NULL, .comment = "Show only specified columns in the table." },
{ .text = "<col>", .arg_str = NULL, .comment = "Show only column <col> (it must not have the same name as an output format specifier)." },
{ .text = "<col>/gt/<val>", .arg_str = NULL, .comment = "Grep rows where column <col> is greater than <val>." },
Expand Down
8 changes: 4 additions & 4 deletions librz/core/cmd_descs/cmd_descs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -602,10 +602,10 @@ commands:
details:
- name: Table format specifiers (<table_spec>)
entries:
- text: "<col>/sort/<inc|dec>"
comment: Sort table by column <col> in increasing or decreasing order.
- text: "<col>/sortlen/<inc|dec>"
comment: Sort table length of column <col> in increasing or decreasing order.
- text: "<col>/sort/rev"
comment: Sort table by column <col> in reverse order.
- text: "<col>/sortlen/rev"
comment: Sort table by column <col> length in reverse order.
- text: "<col>/cols[/<col2>[/<col3>...]]"
comment: Show only specified columns in the table.
- text: "<col>"
Expand Down
Loading