package opam-grep

  1. Overview
  2. Docs
An opam plugin that greps anything in the sources of every opam packages

Install

Dune Dependency

Authors

Maintainers

Sources

opam-grep-0.3.0.tar.gz
md5=89612e37a1a226febb54b9c3a0762575
sha512=ce3834ddd9ed907f220f8f74eb136ae3b034eb0b853d39ea10b7ba1f0b1c83c2c405a3596ba863efb2fdde97d19939515e30be3422dd3865c98a3d191e6d5f46

CHANGES.md.html

v0.3.0 (25/01/2022)

  • Add a --repos option to grep through only the selected repositories and not all of them (#3 suggestion from @Sudha247)

v0.2.0 (11/09/2021)

  • Complete rewrite from POSIX shell script to OCaml, making it more portable

  • Use the faster ripgrep and ugrep over grep when available (suggestion from @Engil)

  • Ignore read failures from grep (symlinks to unreachable files can make it fail)

  • Use $XDG_CACHE_HOME when available to store the archives instead of just ~/.cache

  • Use the progress library to show progress instead of a non-portable/DIY spinner

  • Use the cmdliner library to handle arguments and produce a manpage via --help

v0.1.1 (20/06/2021)

  • Fix missing shell quotes resulting in the impossibility of having regexp with spaces in them

v0.1.0 (18/06/2021)

  • Just a simple shell script that greps in the sources of every opam packages

  • General quality of life improvements by @dra27 in #1