jq Reference: Filters, Array Operations, String Formatting, kubectl and AWS CLI Patterns
jq patterns for real shell scripts and CI pipelines.
-r flag: the one you always forget
jq '.name' # "Alice" (with quotes)
jq -r '.name' # Alice (without quotes, for shell use)
Use -r whenever you're piping the output to another command.
se...
releaserun.hashnode.dev1 min read