-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f961aa
commit 148290c
Showing
44 changed files
with
519 additions
and
597 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1616,12 +1616,11 @@ same line, like XOR: | |
### Search this but not that with -v, -e, -N, -f, -L, -w, -x | ||
|
||
-e PATTERN, --regexp=PATTERN | ||
Specify a PATTERN used during the search of the input: an input | ||
line is selected if it matches any of the specified patterns. | ||
Note that longer patterns take precedence over shorter patterns. | ||
This option is most useful when multiple -e options are used to | ||
specify multiple patterns, when a pattern begins with a dash (`-'), | ||
to specify a pattern after option -f or after the FILE arguments. | ||
Specify a PATTERN to search the input. An input line is selected | ||
if it matches any of the specified patterns. This option is useful | ||
when multiple -e options are used to specify multiple patterns, or | ||
when a pattern begins with a dash (`-'), or to specify a pattern | ||
after option -f or after the FILE arguments. | ||
-f FILE, --file=FILE | ||
Read newline-separated patterns from FILE. White space in patterns | ||
is significant. Empty lines in FILE are ignored. If FILE does not | ||
|
@@ -4189,11 +4188,10 @@ in markdown: | |
|
||
-e PATTERN, --regexp=PATTERN | ||
Specify a PATTERN to search the input. An input line is selected | ||
if it matches any of the specified patterns. Note that longer | ||
patterns take precedence over shorter patterns. This option is | ||
most useful when multiple -e options are used to specify multiple | ||
patterns, when a pattern begins with a dash (`-'), to specify a | ||
pattern after option -f or after the FILE arguments. | ||
if it matches any of the specified patterns. This option is | ||
useful when multiple -e options are used to specify multiple | ||
patterns, or when a pattern begins with a dash (`-'), or to | ||
specify a pattern after option -f or after the FILE arguments. | ||
|
||
--encoding=ENCODING | ||
The encoding format of the input. The default ENCODING is binary | ||
|
@@ -5297,7 +5295,7 @@ in markdown: | |
|
||
$ ugrep -e FIXME -f cpp/zap_strings myfile.cpp | ||
|
||
Find lines with `FIXME' or `TODO', showing line numberes: | ||
Find lines with `FIXME' or `TODO', showing line numbers: | ||
|
||
$ ugrep -n -e FIXME -e TODO myfile.cpp | ||
|
||
|
@@ -5380,7 +5378,7 @@ in markdown: | |
$ ugrep --help fuzzy | ||
|
||
COPYRIGHT | ||
Copyright (c) 2021-2024 Robert A. van Engelen <[email protected]> | ||
Copyright (c) 2021,2024 Robert A. van Engelen <[email protected]> | ||
|
||
ugrep is released under the BSD-3 license. All parts of the software | ||
have reasonable copyright terms permitting free redistribution. This | ||
|
@@ -5394,7 +5392,7 @@ in markdown: | |
|
||
|
||
|
||
ugrep 6.1.0 June 3, 2024 UGREP(1) | ||
ugrep 6.2.0 July 9, 2024 UGREP(1) | ||
|
||
🔝 [Back to table of contents](#toc) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
Binaries for Windows 32-bit and 64-bit ugrep.exe are included in the | ||
repository: building ugrep on Windows takes some serious effort to install and | ||
Binaries for Windows 32-bit and 64-bit ugrep.exe and ugrep-indexer.exe are | ||
included: building ugrep on Windows takes some serious effort to install and | ||
compile PCRE2 and all of the compression libraries together with ugrep with the | ||
proper configuration settings of C++ dev tools. | ||
|
||
Visual Studio ugrep.exe build instructions can be found in vs/ugrep/README.txt | ||
proper configuration settings of C++ dev tools. Visual Studio ugrep.exe build | ||
instructions can be found in vs/ugrep/README.txt |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
|
||
/** | ||
@file input.cpp | ||
@brief RE/flex input character sequence class and simd.h CPUID check | ||
@brief RE/flex input character sequence class | ||
@author Robert van Engelen - [email protected] | ||
@copyright (c) 2016-2020, Robert van Engelen, Genivia Inc. All rights reserved. | ||
@copyright (c) BSD-3 License - see LICENSE.txt | ||
|
Oops, something went wrong.