Releases: ashb/jqrepl
Releases · ashb/jqrepl
v0.1.0
The one where you can refer to previous results
$_ | type
or $out[20] | .Tags
now work.
I might see about changing this to a function since then it can become _ | type
or _(20) | .Tags
v0.0.2preview
I've updated it so you can now pipe JSON input in:
$ aws ec2 describe-instances | ./jqrepl-0.02preview
0 » type
"object"
1 » keys
[
"Reservations"
]
2 » .Reservations[0] | keys
[
"Groups",
"Instances",
"OwnerId",
"ReservationId"
]
3 »