2022-05-31 11:11:19 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.8.0 v3.8.0 New option combination -o (--only-matching) with -ABC context to show the match \ within NUM columns, with context before and/or after, which visually aids in \ searching files with long lines; option -o with -b or -k now shows results on \ separate lines; new option --width to truncate long lines to the specified width \ or the terminal width by default; short ug command now sorts by name by default; \ query TUI ALT-] [ (increase/decrease context) and ALT-} { (increase/decrease \ fuzziness) keys switched meaning (quicker and more intuitive); new %+ format \ field used by updated --only-line-number option; new --help fuzzy help page; \ updated man pages and other improvements. |
2022-05-11 09:56:38 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.11 ugrep v3.7.11 New -Zbest (--fuzzy=best) option argument best to only output the best matching \ patterns. Updated option -Z (--fuzzy) can now be combined with -U (--binary) to \ fuzzy match bytes instead of Unicode characters. Additional --stats results with \ total lines searched and matched, and time elapsed. New complementary options \ --min-depth, --max-depth, --min-line and --max-line which are added for \ consistency with the updated options --min-count and --max-count. Updated the \ --min-count option, which can now be combined with any other option except with \ -v (--invert-match). Updated option -K (--range) to take a MAX argument instead \ of a FIRST argument for consistency with other min/max options. Recursive \ searching sysfd, such as /proc and /sys, no longer blocks on special \ files/devices. Fixed inconsistent colorization with option -v when used with \ context options -A, -B and -C. Fixed option -r when combined with file argument \ - (read standard input), which does both, like GNU grep. Othe r minor improvements and fixes. |
2022-05-09 13:19:31 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.10 v3.7.10 Updated option -Z (--fuzzy) can now be combined with -U (--binary) to fuzzy \ match bytes instead of Unicode characters. Additional --stats results with total \ lines searched and matched, and time elapsed. New complementary options \ --min-depth, --max-depth, --min-line and --max-line which are added for \ consistency with the updated options --min-count and --max-count. Updated the \ --min-count option, which can now be combined with any other option except with \ -v (--invert-match). Updated option -K (--range) to take a MAX argument instead \ of a FIRST argument for consistency with other min/max options. Recursive \ searching sysfd, such as /proc and /sys, no longer blocks on special \ files/devices. Fixed inconsistent colorization with option -v when used with \ context options -A, -B and -C. Fixed option -r when combined with file argument \ - (read standard input), which does both, like GNU grep. Other minor \ improvements and fixes. |
2022-04-10 14:21:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.9 ugrep v3.7.9 Additional --stats results with total lines searched and matched, and time \ elapsed. New complementary options --min-depth, --max-depth, --min-line and \ --max-line which are added for consistency with the updated options --min-count \ and --max-count. Updated the --min-count option, which can now be combined with \ any other option except with -v (--invert-match). Updated option -K (--range) to \ take a MAX argument instead of a FIRST argument for consistency with other \ min/max options. Recursive searching sysfd, such as /proc and /sys, no longer \ blocks on special files/devices. Fixed inconsistent colorization with option -v \ when used with context options -A, -B and -C. Fixed option -r when combined with \ file argument - (read standard input), which does both, like GNU grep. Other \ minor improvements. |
2022-04-06 16:49:56 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.8 ugrep v3.7.8 New complementary options --min-depth, --max-depth, --min-line and --max-line \ which are added for consistency with the updated options --min-count and \ --max-count. Updated the --min-count option, which can now be combined with any \ other option except with -v (--invert-match). Updated option -K (--range) to \ take a MAX argument instead of a FIRST argument for consistency with other \ min/max options. Recursive searching sysfd, such as /proc and /sys, no longer \ blocks on special files/devices. Fixed inconsistent colorization with option -v \ when used with context options -A, -B and -C. Fixed option -r when combined with \ file argument - (read standard input), which does both, like GNU grep. Updated \ --stats reporting and other minor improvements. |
2022-04-05 19:19:23 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.7 ugrep v3.7.7 New complementary options --min-depth, --max-depth, --min-line and --max-line \ which are added for consistency with the updated options --min-count and \ --max-count. Updated the --min-count option, which can now be combined with any \ other option except with -v (--invert-match). Updated option -K (--range) to \ take a MAX argument instead of a FIRST argument for consistency with other \ min/max options. Recursive searching sysfd, such as /proc and /sys, no longer \ blocks on special files/devices. Fixed colorization of option -v when used with \ context options -A, -B and -C. Fixed option -r when combined with argument - \ (read standard input), which does both, like GNU grep. Updated --stats reporting \ and other minor improvements. |
2022-03-17 22:19:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.6 ugrep v3.7.6 New --min-count option, new --hexdump options to grep binary files and display \ binary matches in hexadecimal with n hex lines before and after the match with \ --hexdump=Cn, --hexdump=An for n lines after and --hexdump=Bn for n lines \ before. Omitting n defaults to the entire matching line. Option -X is equivalent \ to --hexdump=2C for 2 hex columns per line and entire matching line as context. \ Includes user experience improvements, such as additional --help information and \ --stats details. This incremental update skips sysfd files that are empty and \ not searchable (e.g. located in /proc and /sys). We also made ugrep faster \ overall with performance improvements. More coming soon! |
2022-03-15 11:25:06 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.5 ugrep v3.7.5 New --hexdump options to grep binary files and display binary matches in \ hexadecimal with n hex lines before and after the match with --hexdump=Cn, \ --hexdump=An for n lines after and --hexdump=Bn for n lines before. Omitting n \ defaults to the entire matching line. Option -X is equivalent to --hexdump=2C \ for 2 hex columns per line and entire matching line as context. Includes user \ experience improvements, such as additional --help information and --stats \ details. This incremental update skips sysfd files that are empty and not \ searchable (e.g. located in /proc and /sys). We also made ugrep faster overall \ with performance improvements. More coming soon! |
2022-02-25 14:40:12 by Frederic Cambus | Files touched by this commit (2) | |
Log message: ugrep: update to 3.7.4. New --hexdump options to grep binary files and display binary matches in hexadecimal with n hex lines before and after the match with --hexdump=Cn, --hexdump=An for n lines after and --hexdump=Bn for n lines before. Omitting n defaults to the entire matching line. Option -X is equivalent to --hexdump=2C for 2 hex columns per line and entire matching line as context. Includes user experience improvements, such as additional --help information and --stats details. We also made ugrep faster overall with performance improvements. |
2022-02-21 17:42:46 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: ugrep: updated to 3.7.3 ugrep v3.7.3 New --hexdump options to grep binary files and display binary matches in \ hexadecimal with n hex lines before and after the match with --hexdump=Cn, \ --hexdump=An for n lines after and --hexdump=Bn for n lines before. Omitting n \ defaults to the entire matching line. Option -X is equivalent to --hexdump=2C \ for 2 hex columns per line and entire matching line as context. Includes user \ experience improvements, such as additional --help information and --stats \ details. We also made ugrep faster overall with performance improvements. More \ coming soon! |