blob: a8f93ac25a3a58b26028221a5405b0a6c01cec5b (
plain)
1
2
3
4
5
6
7
8
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.
|