%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
# jq(1) completion -*- shell-script -*-
_jq()
{
local cur prev words cword
_init_completion || return
case $prev in
--help | --version | --arg | --argjson | --slurpfile | --argfile)
return
;;
--indent)
COMPREPLY=($(compgen -W '{1..8}' -- "$cur"))
return
;;
--from-file | --run-tests | -!(-*)f)
_filedir
return
;;
-!(-*)L)
_filedir -d
return
;;
esac
((cword > 2)) &&
case ${words[cword - 2]} in
--arg | --argjson)
return
;;
--slurpfile | --argfile)
_filedir json
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
return
fi
local args
# TODO: DTRT with args taking 2 options
_count_args "" "@(--arg|--arg?(json|file)|--?(slurp|from-)file|--indent|--run-tests|-!(-*)[fL])"
# 1st arg is filter
((args == 1)) && return
# 2... are input files
_filedir json
} &&
complete -F _jq jq
# ex: filetype=sh