Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ugrep-7.6.0-1.1 RPM for x86_64

From OpenSuSE Tumbleweed for x86_64

Name: ugrep Distribution: openSUSE Tumbleweed
Version: 7.6.0 Vendor: openSUSE
Release: 1.1 Build date: Thu Mar 5 20:43:05 2026
Group: Productivity/File utilities Build host: reproducible
Size: 1677139 Source RPM: ugrep-7.6.0-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/Genivia/ugrep
Summary: Universal grep: a feature-rich grep implementation with focus on speed
Ugrep supports an interactive query UI and can search file systems, source
code, text, binary files, archives, compressed files, documents and use
fuzzy search.

Provides

Requires

License

BSD-3-Clause

Changelog

* Thu Mar 05 2026 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.6.0:
    * new options --max-size and min-size to search files whose
      physical size is in the specified MIN and/or MAX range
    * fix zsh completion syntax error
    * update option --ignore-file to ignore files and directories
      specified in an .gitignore file as an absolute /glob to ignore
      those matching the glob under its sub-directories
    * fix emulation of GNU grep option -z (--null-data) to match
      newlines (zero bytes internally) with pattern \s (space), which
      requires non-standard regex behavior internally to include
      matching zero bytes with pattern \s
    * update --ignore-file=FILE to accept a FILE pathname to a non-
      local gitignore FILE that applies globally to ignore files and
      directories, similar to --exclude-from=FILE, but with the minor
      difference that gitignore rules match both files and
      directories with a single glob
    * fix third-party sourced zopen.c library (BSD open source) one-
      byte read beyond its allocated struct s_zstate state variable
      in getcode()
    * fix -m (--max-count) with context options -A or -C sometimes
      producing garbled after-context output that may cause a crash
      in the worst case
    * fix reverse sort by date --sort=rchanged and --sort=rcreated
      not recognized by the TUI at startup
    * update ugrep to search named pipe files specified as arguments
      on the command line instead of skipping them by default, such
      as process substitutions; also improve Linux special system
      files /proc and /sys skipping and/or reading and option -z
      file read error handling to avoid possible pipe fd leaks when
      thousands of /proc files are searched that produce (expected)
      read errors
    * support option --no-empty while using full grep-emulation mode,
      i.e. when ugrep is renamed to grep
* Mon Jun 30 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.5.0:
    * extended dual predict-match PM3+PM5 algorithms
* Tue May 27 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.4.3:
    * fix bug in option -x and regex ^$-anchors used in certain short
      patterns
    * mark likely/unlikely branches for performance
* Wed Apr 30 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.4.2:
    * speed up regex pattern search for some more extreme cases
    * clean up code base to remove shadowed locals
    * add safeguards for preventable pattern undermatch
* Sun Apr 27 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.4.1:
    * more responsive output when searching slow standard input pipes
      such as tail -f log | ug pattern
    * new option argument -t seed7 (or --file-type=seed7) searches
      seed7 files
    * faster path glob search
    * options with paths (globs containing a /) also enable option
    - r when -d, -r or -R are not specified
    * clarify the usefulness of the default to not empty-match
      empty-matching patterns versus GNU grep that does
      (as with ugrep option -Y)
    * option -z (or --decompress) now also auto-detects bzip2, XZ,
      and Zstandard compressed files
    * new option --from=FILE: read additional pathnames of files to
      search from FILE
    * drain the input pipe until EOF when reading non-seekable
      standard input such as from a pipe, for compatibility with GNU
      grep
* Tue Mar 04 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.3.0:
    * make options -i (--ignore-case) and -j (--smart-case) respect
      Unicode letter case conventions
    * usability improvements
* Wed Feb 05 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.2.2:
    * improve search speed when the specified regex pattern is not
      found in the input when the specified regex starts with a
      wildcard such as .*, which previously resulted in unnecessary
      regex match processing overhead
* Tue Jan 28 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.2.1:
    * Fix possible hang when SIMD is not available for some options
      and patterns
* Fri Jan 24 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.2.0:
    * new options --no-files-with-matches and --no-count
    * update options -i and -j when used together: -i unconditional
      case-insensitive matching should override -j smart-case
      conditional case-insensitive matching
    * new adoc type added to option -t or --file-type
    * new full support for GNU/BSD grep option -z (--null-data),
      such that -z is reassigned from --decompress to --null-data
      when ugrep is specifically copied or symlinked with the target
      name grep, egrep, fgrep, zgrep, zegrep, or zfgrep executable
      file binaries to run as replacements of GNU/BSD grep
    * fix a bug in ugrep v7 when matching certain case-insensitive
      patterns at the very end of a file at EOF when an EOL before
      EOF is missing (this is not a problem in versions prior to v7)
* Sat Jan 11 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.1.3:
    * fix a problem with option -i (--ignore-case) that in rare and
      specific circumstances may not match all of the specified
      alternate sub-patterns
* Wed Jan 01 2025 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.1.2:
    * support the latest bzip3 library upgrades
    * permit su search of "unreadable" files
    * do not exit with code 2 when some files can't be decompressed
  - enable bzip3 support for Leap
* Thu Dec 05 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.1.1:
    * fix negative character classes when option -i or --ignore-case
      is used and make ugrep closely emulate GNU grep's character
      class behavior when options -i and -P are used
    * appease -Woverload-virtual and -Wshadow warnings
* Sat Nov 23 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.1.0:
    * add TUI glob editor syntax highlighting
    * bin/ug(|rep)+: Let the helper script work if no helper is
      available
* Sun Nov 17 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - Update to version 7.0.4:
    * TUI fixes for other platforms
  - remove Windows binaries from src rpm; switch to source service
* Tue Nov 12 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 7.0.3:
    * fixes for other platforms
    * usability improvements
* Mon Oct 28 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 7.0.2:
    * rewritten SIMD acceleration logic and the search algorithm
      selection decision logic to speed up pattern matching (the
      actual speedup depends on the type of regex patterns specified)
    * improved regex anchors and word boundary matching speed and
      support
    * fix option --xml pathnames with special characters, which are
      unlikely to occur in pathnames, but aren't strictly forbidden
    * updated option --hexdump with -ABC context hex lines before and
      after a match
    * the TUI now also uses the VISUAL environment variable if PAGER
      is not set
* Wed Oct 09 2024 jun wang <jgwang@suse.com>
  - disable AVX2/AVX512BW CPU extensions because of bsc#1222752
* Sat Aug 24 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 6.5.0
    * faster binary file checking with SIMD (SSE2/AVX2/NEON) UTF-8
      validation
    * new option --context-separator=SEP
    * options -W and -X now also apply to --format fields %o and %O
      to output hex
    * ugrep-indexer option -z (indexes compressed files and
      zip/7z/tar/cpio/pax archives) no longer indexes hidden
      directories and files (i.e. "dotfiles") stored in archives, to
      save space
  - make spec build on Amazon Linux 2023
* Fri Aug 09 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 6.4.1:
    * fix problem with --fixed-strings and --file FILE when FILE
      contains an \E
* Fri Aug 09 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 6.4.0:
    * new custom output format fields for options --format and
    - -replace
    * fix bash completions for key bindings
* Wed Jul 31 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 6.3.0:
    * option --index always enables --recursive
    * new bash, fish and zsh ugrep-indexer completions
    * option --hyperlink outputs absolute search paths
    * update regex DFA cut optimization that was too agressive for
      some patterns
    * option -o (--only-matching) with -ABC context now also
      supports multi-line pattern matching with \n (newline) in regex
      patterns
* Wed Jul 10 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 6.2.0:
    * improved support for legacy grep color environment variable
      single ANSI color codes format
    * improved zsh -ABC options completion
    * improved option -% (--bool) when multiple -e PATTERN are
      specified; now aligns with the documentation of option -e to
      match any of the specified PATTERN (note that -% can be
      combined with options --and, --andnot, --not. -e amd -N)
    * improved option -Q (--query) when combined with options --and,
    - -andnot, --not by activatating option -% (--bool) so that the
      combined search patterns can be edited as one Boolean query
      pattern in the TUI
    * minor speed improvement when searching in large files with
      option -f with a file with hundreds, thousands or more
      words/strings to find (-fwords/4.txt in benchmarks)
    * again extensively tested with randomized patterns
* Tue Jun 04 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 6.1.0:
    * improve option -w to support Unicode
    * make [[:alpha:]] and other [::] character classes also match
      Unicode by default, like \p{Class} already does, unless option
    - U (--ascii or --binary) is used
    * Unicode word boundaries \<, \>, \b, \B unless option -U
      (--ascii or --binary) is used
    * improve bash and zsh auto-completion usability
* Tue May 07 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 6.0.0:
    * faster search speeds on ARM CPUs
    * overall optimization
    * includes ugrep-indexer
* Wed Apr 10 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 5.1.4:
    * use statfs() with options --include-fs and --exclude-fs when
      the preferred statvfs() is not available
    * suppress --filter utility stderr messages when ugrep options
    - s (--no-messages) and -q (--quiet) are used
    * support the NO_COLOR environment variable to suppress color
      output
    * fix TUI scroll glitch in non-split screen, and other TUI fixes
  - enable SIMD code for faster matching on CPUs that support it
    (while keeping build reproducible)
* Mon Mar 11 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 5.1.1:
    * fix a problem with POSIX lazy quantifier matching when combined
      with anchors, causing longer pattern matches than expected
* Sat Mar 09 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 5.1.0:
    * a minor improvement of the regex syntax to allow escaped spaces
    * updated POSIX regex lazy quantifier matching in linear time
      using an advanced DFA transformation algorithm
* Sat Feb 17 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 5.0.0:
    * new and updated regex engine to speed up searching patterns
      using a new heuristic DFA cut algorithm
    * new option --exclude-fs default to exclude file systems that
      aren't specified as search targets
    * new option --all (-@) to search all files except hidden:
      cancel previous file and directory search restrictions
    * TUI regex syntax highlighting improved for --fixed-strings
      (-F) when used with option --bool (-% and -%%)
* Wed Jan 10 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.5.2:
    * fix 7zip search failing on 32 bit systems when option -M is used
      (or -t when setting -M)
* Sat Jan 06 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.5.1:
    * fix bzip3 build failures (previously patched)
  - drop ugrep-4.5.0-fix-bzip3-configure.patch
* Sat Jan 06 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.5.0:
    * 7zip archive search with option -z
    * apply Unicode normalization to canonicalize literal combining
      characters in regex patterns
    * improved TUI TAB directory navigation when searching from the FS
      root
  - drop ugrep-4.4.1-remove-shebang-from-bash-completion.patch
  - add ugrep-4.5.0-fix-bzip3-configure.patch
* Tue Dec 19 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - 4.4.1
    * ship shell completions (bash,zsh,fish)
    * option -t (--file-type) now also accepts filename extensions as
      shortcuts, when unambiguous, for example, the shorter form -tpy
      for -tpython to select files to search
    * TUI ALT-SHIFT-% switches between "bool query lines" mode,
      "bool query files" mode, and bool queries off
      TUI boolF mode (-%FQ) now applies syntax highlighting
    * support legacy grep long options without = to bind option
      arguments
  - add ugrep-4.4.1-remove-shebang-from-bash-completion.patch
* Sat Dec 09 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.3.6:
    * fix an issue with option -Zbest fuzzy matching
    * updated option --index for accelerated index-based search, now
      also indexes and searches archives and compressed files with
      option -z
    * faster search with -ABC context options
* Sat Nov 25 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.3.4:
    * the ug command no longer quits with an error message when no
      default .ugrep config file was found
    * improved GNU grep compatibility
    * Bug fixes for parsing configuration files
* Wed Nov 15 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.3.3:
    * support brotli compressed files
    * support bzip3 compressed files
    * update option --pretty to accept an optional WHEN argument
      never, always, auto similar to the --color option
    * improve TUI screen blanking response when a new search starts,
      while also avoiding screen flicker
    * fix option --zmax>1 when a decompression library produces a
      decompression error when decompressing a nested compressed file
* Fri Nov 03 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.3.2:
    * double short option -%% enables both --files --bool (a single
    - % still enables only --bool) for convenience
    * updated thread pool scheduling and execution with thread
      affinity and priority settings
    * improvements and fixes for minor (mostly cosmetic) issues
* Thu Oct 19 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.3.1:
    * Unicode 15.1 support
    * TUI features, including CTRL-Y improved viewer
    * TUI regex syntax highlighting with user-definable colors
* Sun Oct 08 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.3.0:
    * Redesigned TUI with a new split screen window pane to preview
      matching files
    * fix --zmax=n for n>1 that had a low chance to hang as
      discovered recently (about once in a few thousand runs) when
      searching (deeply) nested zip or tar archives
    * fix compressed file search of files that are exactly one byte
      long, instead of rejecting those files as being empty
* Sat Sep 23 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.2.0:
    * text user inerface improvements
    * improve recursive search performance
    * improve compatibility with GNU grep
    * improve detection of special devices to avoid searching them
* Mon Sep 18 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.1.0:
    * fix -Z fuzzy matching when character deletions are solely
      specified with a minus sign
    * fix --pager when a regex syntax error occurs
    * update --pager to use $PAGER
    * update --ignore-files for compliance with git and ag gitignore
      rules
    * update -Q TUI ctrl-S and ctrl-W to jump to context group
      separators when context options -ABC are specified
    * update -o for GNU grep compatibility with "empty-matching"
      patterns
    * update POSIX [[:space:]] and \s to exclude newline \n matching
    * improve performance: faster -c and line matching
    * improve performance: faster "empty-matching" pattern search
* Mon Aug 28 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.0.5:
    * Fix a recently-added optimization that may in some rare cases
      caused a problem with a match at the end of a file.
* Sat Aug 26 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.0.4:
    * update --save-config as per user request
    * correct an issue with -o and context
* Fri Aug 25 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.0.3:
    * new --delay=DELAY option to specify a default query TUI
      response delay time, which can be specified in a .ugrep config
      file with delay=DELAY (--save-config includes this setting also)
    * fix option -m compatibility issue wth GNU grep when showing
      context lines with -ABC after the last max match
* Wed Aug 23 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.0.2:
    * additional speed up with improved parametrization of the
      matching algorithm decision logic
* Sun Aug 20 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.0.1:
    * speed up option -l to search compressed files
    * enable an important search optimization that was no longer
      enabled
* Fri Aug 18 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 4.0.0:
    * faster async output, speeds up ugrep 3x when outputting many
      matching lines
    * removed "rest line" buffering, speeds up ugrep up to 2x,
      depending on the output-related options used
    * removed redundant "binary file" checking, speed-up 10%~20%
    * double size input buffer, speeds up searching 5%~20% when
      searching very large files (GB) with none/infrequent pattern
      matches
    * faster empty pattern matching, i.e. pattern '' matches all
      lines faster, as much as 10x faster
    * removed redundant color escape codes from the output
    * option -Q with an optional argument is now -Q=DELAY instead of
    - QDELAY, so -Q2 is -Q -2 (simple options should be composable/
      separable) which searches 2 directory levels deep with the
      query TUI
* Tue Aug 15 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.12.7:
    * compatibility improvement with one of GNU grep's idiosyncrasies:
      unpaired ) in regex are matched literally. This behavior is
      automatically in effect when the grep and egrep aliases of
      ugrep are used or explicitly with option -Y.
* Mon Aug 07 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.12.6:
    * New option -S (--dereference-files) to follow symbolic links
      only to files, not to directories, when using option -r for
      recursive search.
    * Updated default recursive search to strictly perform -r without
      following any symbolic links.
    * New option --index for fast index-based search with the new
      ugrep-indexer tool.
* Sat Aug 05 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.12.5:
    * New --iglob and --glob-ignore-case options
* Tue Jul 18 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.12.4:
    * Faster search for common search patterns, such as a set of
      words, using SIMD AVX and neon/AArch64 intrinsics
* Sat Jul 15 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.12.3:
    * Fixed a potential pattern match issue in the new v3.12
      optimizations
* Tue Jul 11 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.12.2:
    * Speed improvements to further speed up common search patterns
    * Improved man page
    * The ug and ug+ commands now enable --pretty by default
      (that is, if a .ugrep configuration file does not override it
      with no-pretty).
* Sun Jun 04 2023 Andreas Stieger <Andreas.Stieger@gmx.de>
  - update to 3.12.1:
    * New ug+ and ugrep+ commands to search pdfs, documents and image
      metadata when the corresponding tools are installed
    * improved --filter option
    * speed improvements
* Sat Apr 08 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.11.2:
    * Improve --hyperlink with additional usability options
* Sun Apr 02 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.11.1:
    * Smarter interactive navigation in the TUI when option --tree is
      used with option -l or -c
* Sun Mar 19 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.11.0:
    * Update --format output when used with option -o to also enable
      option -u to show all matches automatically;
    * improve --json, --xml, --csv output when used with option -o
    * update option -o output with headings (when applicable) for
      every match like GNU grep
    * update options --format and --replace field %m to output the
      number of matches sequentially
    * new --format and --replace field %M outputs number of matching
      lines
* Sat Mar 18 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.10.1:
    * Fix a performace issue with specific regex patterns when used
      with case-insensitive pattern matching
* Wed Mar 01 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.10.0:
    * This release adds the option --tree to output directory trees
      of files for the options -l (--files-with-matches),
    - L (--files-withou-match), and -c (--count)
    * The option --pretty was updated to to enable --tree when output
      is sent to  a terminal. This can be disabled with --no-tree.
* Wed Feb 01 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.9.7:
    * handle gnutar archive extension field formats to search huge
      files (>4GB) stored in (gnu) tar archives
  - includes changes gro 3.9.6:
    * Fixed a Unicode-specific regex pattern syntax issue that caused
      a valid regex pattern to produce a regex syntax error message
* Sun Jan 15 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.9.5:
    * Fix option -l (files-with-matches) when used with option -z
      (decompress) which would sometimes show duplicates when a
      compressed files had many matches
* Thu Jan 05 2023 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.9.4:
    * fix spurious 0 byte in tar filename output results
    * fix support for PCRE2 prior 10.34

Files

/usr/bin/ug
/usr/bin/ug+
/usr/bin/ugrep
/usr/bin/ugrep+
/usr/bin/ugrep-indexer
/usr/share/doc/packages/ugrep
/usr/share/doc/packages/ugrep/README.md
/usr/share/licenses/ugrep
/usr/share/licenses/ugrep/LICENSE.txt
/usr/share/man/man1/ug.1.gz
/usr/share/man/man1/ugrep-indexer.1.gz
/usr/share/man/man1/ugrep.1.gz
/usr/share/ugrep
/usr/share/ugrep/patterns
/usr/share/ugrep/patterns/README.md
/usr/share/ugrep/patterns/c
/usr/share/ugrep/patterns/c++
/usr/share/ugrep/patterns/c++/README.md
/usr/share/ugrep/patterns/c++/classes
/usr/share/ugrep/patterns/c++/comments
/usr/share/ugrep/patterns/c++/defines
/usr/share/ugrep/patterns/c++/directives
/usr/share/ugrep/patterns/c++/doc_comments
/usr/share/ugrep/patterns/c++/enums
/usr/share/ugrep/patterns/c++/functions
/usr/share/ugrep/patterns/c++/includes
/usr/share/ugrep/patterns/c++/names
/usr/share/ugrep/patterns/c++/namespaces
/usr/share/ugrep/patterns/c++/strings
/usr/share/ugrep/patterns/c++/structs
/usr/share/ugrep/patterns/c++/typedefs
/usr/share/ugrep/patterns/c++/zap_commands
/usr/share/ugrep/patterns/c++/zap_comments
/usr/share/ugrep/patterns/c++/zap_directives
/usr/share/ugrep/patterns/c++/zap_strings
/usr/share/ugrep/patterns/c/README.md
/usr/share/ugrep/patterns/c/comments
/usr/share/ugrep/patterns/c/defines
/usr/share/ugrep/patterns/c/directives
/usr/share/ugrep/patterns/c/doc_comments
/usr/share/ugrep/patterns/c/enums
/usr/share/ugrep/patterns/c/functions
/usr/share/ugrep/patterns/c/includes
/usr/share/ugrep/patterns/c/names
/usr/share/ugrep/patterns/c/strings
/usr/share/ugrep/patterns/c/structs
/usr/share/ugrep/patterns/c/typedefs
/usr/share/ugrep/patterns/c/zap_commands
/usr/share/ugrep/patterns/c/zap_comments
/usr/share/ugrep/patterns/c/zap_directives
/usr/share/ugrep/patterns/c/zap_strings
/usr/share/ugrep/patterns/cpp
/usr/share/ugrep/patterns/cpp/README.md
/usr/share/ugrep/patterns/cpp/classes
/usr/share/ugrep/patterns/cpp/comments
/usr/share/ugrep/patterns/cpp/defines
/usr/share/ugrep/patterns/cpp/directives
/usr/share/ugrep/patterns/cpp/doc_comments
/usr/share/ugrep/patterns/cpp/enums
/usr/share/ugrep/patterns/cpp/functions
/usr/share/ugrep/patterns/cpp/includes
/usr/share/ugrep/patterns/cpp/names
/usr/share/ugrep/patterns/cpp/namespaces
/usr/share/ugrep/patterns/cpp/strings
/usr/share/ugrep/patterns/cpp/structs
/usr/share/ugrep/patterns/cpp/typedefs
/usr/share/ugrep/patterns/cpp/zap_commands
/usr/share/ugrep/patterns/cpp/zap_comments
/usr/share/ugrep/patterns/cpp/zap_directives
/usr/share/ugrep/patterns/cpp/zap_strings
/usr/share/ugrep/patterns/cs
/usr/share/ugrep/patterns/cs/README.md
/usr/share/ugrep/patterns/cs/classes
/usr/share/ugrep/patterns/cs/comments
/usr/share/ugrep/patterns/cs/doc_comments
/usr/share/ugrep/patterns/cs/enums
/usr/share/ugrep/patterns/cs/functions
/usr/share/ugrep/patterns/cs/names
/usr/share/ugrep/patterns/cs/strings
/usr/share/ugrep/patterns/cs/zap_comments
/usr/share/ugrep/patterns/cs/zap_strings
/usr/share/ugrep/patterns/html
/usr/share/ugrep/patterns/html/README.md
/usr/share/ugrep/patterns/html/comments
/usr/share/ugrep/patterns/html/href
/usr/share/ugrep/patterns/html/img
/usr/share/ugrep/patterns/html/link
/usr/share/ugrep/patterns/html/meta
/usr/share/ugrep/patterns/html/pre
/usr/share/ugrep/patterns/html/script
/usr/share/ugrep/patterns/html/src
/usr/share/ugrep/patterns/html/style
/usr/share/ugrep/patterns/html/zap_comments
/usr/share/ugrep/patterns/java
/usr/share/ugrep/patterns/java/README.md
/usr/share/ugrep/patterns/java/classes
/usr/share/ugrep/patterns/java/comments
/usr/share/ugrep/patterns/java/doc_comments
/usr/share/ugrep/patterns/java/enums
/usr/share/ugrep/patterns/java/imports
/usr/share/ugrep/patterns/java/methods
/usr/share/ugrep/patterns/java/names
/usr/share/ugrep/patterns/java/strings
/usr/share/ugrep/patterns/java/zap_comments
/usr/share/ugrep/patterns/java/zap_strings
/usr/share/ugrep/patterns/js
/usr/share/ugrep/patterns/js/README.md
/usr/share/ugrep/patterns/js/classes
/usr/share/ugrep/patterns/js/comments
/usr/share/ugrep/patterns/js/dom
/usr/share/ugrep/patterns/js/functions
/usr/share/ugrep/patterns/js/names
/usr/share/ugrep/patterns/js/strings
/usr/share/ugrep/patterns/js/zap_comments
/usr/share/ugrep/patterns/js/zap_strings
/usr/share/ugrep/patterns/json
/usr/share/ugrep/patterns/json/README.md
/usr/share/ugrep/patterns/json/keys
/usr/share/ugrep/patterns/json/keys_and_values
/usr/share/ugrep/patterns/json/values
/usr/share/ugrep/patterns/markdown
/usr/share/ugrep/patterns/markdown/README.md
/usr/share/ugrep/patterns/markdown/code
/usr/share/ugrep/patterns/markdown/codeblocks
/usr/share/ugrep/patterns/markdown/images
/usr/share/ugrep/patterns/markdown/links
/usr/share/ugrep/patterns/markdown/sections
/usr/share/ugrep/patterns/perl
/usr/share/ugrep/patterns/perl/README.md
/usr/share/ugrep/patterns/perl/comments
/usr/share/ugrep/patterns/perl/formats
/usr/share/ugrep/patterns/perl/names
/usr/share/ugrep/patterns/perl/strings
/usr/share/ugrep/patterns/perl/subs
/usr/share/ugrep/patterns/perl/zap_comments
/usr/share/ugrep/patterns/perl/zap_formats
/usr/share/ugrep/patterns/perl/zap_strings
/usr/share/ugrep/patterns/php
/usr/share/ugrep/patterns/php/README.md
/usr/share/ugrep/patterns/php/comments
/usr/share/ugrep/patterns/php/functions
/usr/share/ugrep/patterns/php/names
/usr/share/ugrep/patterns/php/strings
/usr/share/ugrep/patterns/php/zap_comments
/usr/share/ugrep/patterns/php/zap_html
/usr/share/ugrep/patterns/php/zap_strings
/usr/share/ugrep/patterns/python
/usr/share/ugrep/patterns/python/README.md
/usr/share/ugrep/patterns/python/comments
/usr/share/ugrep/patterns/python/defs
/usr/share/ugrep/patterns/python/doc_strings
/usr/share/ugrep/patterns/python/imports
/usr/share/ugrep/patterns/python/names
/usr/share/ugrep/patterns/python/strings
/usr/share/ugrep/patterns/python/zap_comments
/usr/share/ugrep/patterns/python/zap_strings
/usr/share/ugrep/patterns/ruby
/usr/share/ugrep/patterns/ruby/README.md
/usr/share/ugrep/patterns/ruby/classes
/usr/share/ugrep/patterns/ruby/comments
/usr/share/ugrep/patterns/ruby/defs
/usr/share/ugrep/patterns/ruby/modules
/usr/share/ugrep/patterns/ruby/names
/usr/share/ugrep/patterns/ruby/strings
/usr/share/ugrep/patterns/ruby/zap_comments
/usr/share/ugrep/patterns/ruby/zap_strings
/usr/share/ugrep/patterns/rust
/usr/share/ugrep/patterns/rust/README.md
/usr/share/ugrep/patterns/rust/comments
/usr/share/ugrep/patterns/rust/crates
/usr/share/ugrep/patterns/rust/enums
/usr/share/ugrep/patterns/rust/fns
/usr/share/ugrep/patterns/rust/impls
/usr/share/ugrep/patterns/rust/macros
/usr/share/ugrep/patterns/rust/mods
/usr/share/ugrep/patterns/rust/names
/usr/share/ugrep/patterns/rust/strings
/usr/share/ugrep/patterns/rust/structs
/usr/share/ugrep/patterns/rust/traits
/usr/share/ugrep/patterns/rust/unions
/usr/share/ugrep/patterns/rust/uses
/usr/share/ugrep/patterns/rust/zap_comments
/usr/share/ugrep/patterns/rust/zap_strings
/usr/share/ugrep/patterns/scala
/usr/share/ugrep/patterns/scala/README.md
/usr/share/ugrep/patterns/scala/classes
/usr/share/ugrep/patterns/scala/comments
/usr/share/ugrep/patterns/scala/defs
/usr/share/ugrep/patterns/scala/imports
/usr/share/ugrep/patterns/scala/names
/usr/share/ugrep/patterns/scala/objects
/usr/share/ugrep/patterns/scala/packages
/usr/share/ugrep/patterns/scala/strings
/usr/share/ugrep/patterns/scala/zap_comments
/usr/share/ugrep/patterns/scala/zap_strings
/usr/share/ugrep/patterns/swift
/usr/share/ugrep/patterns/swift/README.md
/usr/share/ugrep/patterns/swift/classes
/usr/share/ugrep/patterns/swift/comments
/usr/share/ugrep/patterns/swift/enums
/usr/share/ugrep/patterns/swift/funcs
/usr/share/ugrep/patterns/swift/imports
/usr/share/ugrep/patterns/swift/names
/usr/share/ugrep/patterns/swift/strings
/usr/share/ugrep/patterns/swift/structs
/usr/share/ugrep/patterns/swift/zap_comments
/usr/share/ugrep/patterns/swift/zap_strings
/usr/share/ugrep/patterns/xml
/usr/share/ugrep/patterns/xml/README.md
/usr/share/ugrep/patterns/xml/attributes
/usr/share/ugrep/patterns/xml/attributes_and_values
/usr/share/ugrep/patterns/xml/comments
/usr/share/ugrep/patterns/xml/elements
/usr/share/ugrep/patterns/xml/pis
/usr/share/ugrep/patterns/xml/tags
/usr/share/ugrep/patterns/xml/zap_comments
/usr/share/ugrep/patterns/xml/zap_pis
/usr/share/ugrep/patterns/xml/zap_strings


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Jul 24 15:27:28 2026