Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ if test "$USE_MAINTAINER_MODE" = yes; then
fi

AC_CHECK_FUNCS(memmem)
AC_CHECK_FUNCS(mkstemp)

AC_CHECK_HEADER("sys/cygwin.h", [have_cygwin=1;])
AC_CHECK_HEADER("shlwapi.h",[have_shlwapi=1;])
Expand Down
19 changes: 19 additions & 0 deletions docs/content/manual/dev/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,25 @@ sections:
like awk's -f option. This changes the filter argument to be
interpreted as a filename, instead of the source of a program.

* `-o` / `--output-file filename`:

Write output values to the named file instead of standard out.
The output is first written to a temporary file in the same
directory, then renamed into place on success. This makes it
safe to use an input file as the output file (e.g.,
`jq '.x += 1' f.json -o f.json`).

The outputs from `--debug-dump-disasm` and `--debug-trace` are
still written to standard out, so this option can be used to
separate them.

* `-O` / `--clobber-output filename`:

Like `-o`, but truncates the output file immediately instead
of writing to a temporary file first. This is faster, but
the output file must not also be an input file, and partial
output may be left behind if jq is interrupted.

* `-L directory` / `--library-path directory`:

Prepend `directory` to the search list for modules. If this
Expand Down
17 changes: 16 additions & 1 deletion jq.1.prebuilt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading