1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Document .foo.bar in manual

This commit is contained in:
Nicolas Williams
2013-12-26 18:25:31 -06:00
parent 060eb39bf9
commit cb976b9a50

View File

@@ -190,7 +190,7 @@ sections:
input: '"Hello, world!"'
output: ['"Hello, world!"']
- title: "`.foo`"
- title: "`.foo`, `.foo.bar`"
body: |
The simplest *useful* filter is `.foo`. When given a
@@ -199,6 +199,8 @@ sections:
If the key contains special characters, you need to surround
it with double quotes like this: `."foo$"`.
A filter of the form `.foo.bar` is equivalent to `.foo|.bar`.
examples:
- program: '.foo'