Skip to content

Releases: rsharo/bgrep

bgrep 1.0: Now compatible with cygwin and Raspbian

02 Jan 01:53
7ef4fa1

Choose a tag to compare

First major release of bgrep.

Now supports several linux and linux-like environments, including:

  • Redhat
  • Debian
  • Cygwin
  • Windows Subsystem for Linux (WSL)
  • Raspbian

bgrep-0.4: now with repeat groups

24 Jan 03:41

Choose a tag to compare

Now with support for:

  • repeating patterns: "foo"*1k means "foofoofoo..." (1024 times)
  • long option names with more descriptive help
  • quiet mode (comparable to grep's -q switch)
  • context flags are back (-A/-B/-C)
  • closer fidelity to grep's flags and behavior
  • better regression tests
  • bug fixes
  • now based on gnulib bootstrap: less files in the source tree

bgrep-0.3

21 Jan 18:27

Choose a tag to compare

A new and improved bgrep with support for:

  • xxd-style binary output (old offset-printing mode now requires -b flag)
  • "Count matches" mode (-c)
  • Filename printing via -l (list files) or -H (filename prefix) flags
  • Stop after first match (-F) flag
  • Recursion into directories is now selectable via (-r) flag
  • No longer any hard-coded limits on pattern size -- now the only limit is your available memory
  • "Skip" (-s) option to seek/scan forward in a stream before matching
  • Now prints detailed help with the (-h) flag
  • Now uses gnulib for portability and memory safety
  • More friendly to pipes and standard input
  • New autotools-based build chain with robust test vectors