aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-06-23 19:23:02 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-06-23 19:23:02 -0400
commit5a6d4e4b8b2739f4b3520aa707421e99f5939e3e (patch)
treec01e0815056bc706b2c1e64ce3824f6fce77ebf4 /README.md
parentfaba716e87b6201784fa71542e76073ca25963e8 (diff)
Deprecate JSON output formatmaster
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/README.md b/README.md
index e8747d5..bd3c276 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,6 @@ to and including the next occurrence of "baz" on the same line).
* `-i` `--ignore-case` perform a case-insensitive match
* `-I` `--inplace` perform replacements or filtering in-place on files
* `-e` `--explain` print an explanation of the matches
-* `-j` `--json` print matches as JSON objects
* `-l` `--list-files` print only filenames containing matches
* `-r` `--replace <replacement>` replace the input pattern with the given replacement
* `-s` `--skip <skip pattern>` skip over the given pattern when looking for matches
@@ -150,7 +149,6 @@ File | Description
-------------------------------|-----------------------------------------------------
[bp.c](bp.c) | The main program.
[files.c](files.c) | Loading files into memory.
-[json.c](json.c) | JSON output of matches.
[match.c](match.c) | Pattern matching code (find occurrences of a bp pattern within an input string).
[pattern.c](pattern.c) | Pattern compiling code (compile a bp pattern from an input string).
[printmatch.c](printmatch.c) | Printing a visual explanation of a match.