Skip to content

Commit 086eb5d

Browse files
0xflotusmclarkson
authored andcommitted
fixed recursive (#4)
* fixed recursive * Update JSONPath.sh
1 parent deee99d commit 086eb5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

JSONPath.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ usage() {
108108
echo "pattern - the JSONPath query. Defaults to '$.*' if not supplied."
109109
#echo "-s - Remove escaping of the solidus symbol (straight slash)."
110110
echo "-b - Brief. Only show values."
111-
echo "-j - JSON ouput."
111+
echo "-j - JSON output."
112112
echo "-u - Strip unnecessary leading path elements."
113113
echo "-i - Case insensitive."
114114
echo "-p - Pass-through to the JSON parser."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ done
222222
| $ | Y | the root object/element (optional) |
223223
| @ | Y | the current object/element |
224224
| . or [] | Y | child operator. |
225-
| .. | Y | recusive descent. |
225+
| .. | Y | recursive descent. |
226226
| * | Y | wildcard. All objects/elements regardless their names. |
227227
| [] | Y | subscript operator. |
228228
| [,] | Y | node sets. |

0 commit comments

Comments
 (0)