diff options
author | Petr Kletecka <petr@kle.cz> | 2018-05-03 23:54:37 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-05-05 06:46:30 +0700 |
commit | 739fc9a5eb0cc59d52327191e9807d345f2bbfaf (patch) | |
tree | 77311f4ffdd40607ca1724257e10cc713cdd44f4 /misc/sgrep/README | |
parent | 3061e9c60a8a275c2eb0c7dd777a743e66a785f7 (diff) |
misc/sgrep: Added (sorted grep).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'misc/sgrep/README')
-rw-r--r-- | misc/sgrep/README | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/misc/sgrep/README b/misc/sgrep/README new file mode 100644 index 0000000000000..a8f93ac25a3a5 --- /dev/null +++ b/misc/sgrep/README @@ -0,0 +1,9 @@ +Sgrep (sorted grep) searches sorted input files for lines that match a +search key and outputs the matching lines. When searching large files +sgrep is much faster than traditional Unix grep, but with significant +restrictions. + + * All input files must be sorted regular files. + * The sort key must start at the beginning of the line. + * The search key matches only at the beginning of the line. + * No regular expression support. |