diff --git a/index.html b/index.html index 3bde0bc..36a8eb9 100644 --- a/index.html +++ b/index.html @@ -557,7 +557,13 @@

FEATURE: In-place editing

$ json -I -f *.json    # if there is more than one match to the glob
 json: error: lookups cannot be specified with in-place editing (-I/--in-place), too easy to lose content
 
+ +

For multiple files, use exec:

+ +
$ find /path/to/directory -name "*.json" -type f -exec json -I -f {} \;
+

Check find man page for more usages.

+

OPTIONS