Skip to content

Commit c701fb8

Browse files
committed
released 7.6
see release notes
1 parent ef71650 commit c701fb8

28 files changed

Lines changed: 361 additions & 308 deletions

Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ uninstall-hook:
120120
@rm -f $(DESTDIR)$(bindir)/ug+ $(DESTDIR)$(bindir)/ugrep+
121121
@rm -rf $(DESTDIR)$(datadir)/ugrep
122122

123-
.PHONY: test
123+
.PHONY: test check
124124

125-
test check: ${UGREP}
125+
test check: ${UGREP}
126126
@echo
127127
@echo "*** SINGLE-THREADED TESTS ***"
128128
@echo

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,9 +1095,9 @@ uninstall-hook:
10951095
@rm -f $(DESTDIR)$(bindir)/ug+ $(DESTDIR)$(bindir)/ugrep+
10961096
@rm -rf $(DESTDIR)$(datadir)/ugrep
10971097

1098-
.PHONY: test
1098+
.PHONY: test check
10991099

1100-
test: ${UGREP}
1100+
test check: ${UGREP}
11011101
@echo
11021102
@echo "*** SINGLE-THREADED TESTS ***"
11031103
@echo

README.md

Lines changed: 124 additions & 109 deletions
Large diffs are not rendered by default.

bin/win32/ug.exe

2.5 KB
Binary file not shown.

bin/win32/ugrep-indexer.exe

0 Bytes
Binary file not shown.

bin/win32/ugrep.exe

2.5 KB
Binary file not shown.

bin/win64/ug.exe

4 KB
Binary file not shown.

bin/win64/ugrep-indexer.exe

0 Bytes
Binary file not shown.

bin/win64/ugrep.exe

4 KB
Binary file not shown.

completions/bash/ug

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ cat <<'END'
255255
--exclude-fs=MOUNTS Exclude file systems specified by MOUNTS from recursive searches.
256256
-F, --fixed-strings Interpret pattern as a set of fixed strings, separated by newlines, any of which is to be matched.
257257
-f FILE, --file=FILE Read newline-separated patterns from FILE.
258+
--files, -%% Boolean file matching mode, the opposite of --lines.
258259
--filter=COMMANDS Filter files through the specified COMMANDS first before searching.
259260
--filter-magic-label=[+]LABEL:MAGIC Associate LABEL with files whose signature "magic bytes" match the MAGIC regex pattern.
260261
--format=FORMAT Output FORMAT-formatted matches.
@@ -293,8 +294,10 @@ cat <<'END'
293294
--lines Boolean line matching mode for option --bool, the default mode.
294295
-M MAGIC, --file-magic=MAGIC Only search files matching the magic signature pattern MAGIC.
295296
-m [MIN,][MAX], --min-count=MIN, --max-count=MAX Require MIN matches, stop after MAX matches when specified.
296-
--match Match all input.
297+
--match Match all lines.
297298
--max-files=NUM Restrict the number of files matched to NUM.
299+
--max-size=MAX Only search files whose physical size does not exceed MAX bytes.
300+
--min-size=MIN Only search files whose physical size equals or exceeds MIN bytes.
298301
--mmap[=MAX] Use memory maps to search files.
299302
-N PATTERN, --neg-regexp=PATTERN Specify a negative PATTERN to reject specific -e PATTERN matches with a counter pattern.
300303
-n, --line-number Each output line is preceded by its relative line number in the file, starting at line 1.
@@ -304,7 +307,6 @@ cat <<'END'
304307
-O EXTENSIONS, --file-extension=EXTENSIONS Only search files whose filename extensions match the specified comma-separated list of EXTENSIONS, same as -g *.ext for each
305308
-o, --only-matching Only the matching part of a pattern match is output.
306309
--only-line-number Only the line number of a matching line is output.
307-
--files, -%% Boolean file matching mode, the opposite of --lines.
308310
-P, --perl-regexp Interpret PATTERN as a Perl regular expression using PCRE2.
309311
-p, --no-dereference If -R or -r is specified, do not follow symbolic links, even when symbolic links are specified on the command line.
310312
--pager[=COMMAND] When output is sent to the terminal, uses COMMAND to page through the output.

0 commit comments

Comments
 (0)