Skip to content

Commit

Permalink
Fixed grep help
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanpencil committed Jul 16, 2018
1 parent 932a8f1 commit ca22996
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libr/cons/grep.c
Expand Up @@ -31,7 +31,7 @@ static const char *help_detail_tilde[] = {
" ?", "", "count number of matching lines",
" ?.", "", "count number chars",
" ??", "", "show this help message",
" :[s]-[e]", "", "show lines s-e",
" :s..e", "", "show lines s-e",
" ..", "", "internal 'less'",
" ...", "", "internal 'hud' (like V_)",
" {}", "", "json indentation",
Expand All @@ -46,7 +46,8 @@ static const char *help_detail_tilde[] = {
" [i,j,k]", "", "show the columns i, j and k",
"Examples:", "", "",
" i~:0", "", "show first line of 'i' output",
" i~:-2", "", "show first three lines of 'i' output",
" i~:-2", "", "show the second to last line of 'i' output",
" i~:0..3", "", "show first three lines of 'i' output",
" pd~mov", "", "disasm and grep for mov",
" pi~[0]", "", "show only opcode",
" i~0x400$", "", "show lines ending with 0x400",
Expand Down

0 comments on commit ca22996

Please sign in to comment.