Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
479 views
in Technique[技术] by (71.8m points)

command line arguments - how to pass json file name to jq?

currently I call

cat my_file.json | jq

to pretty print json data. I am a bit surprised that I can't do

jq my_file.json

or

jq --file my_file.json

Is it true that I can not specify a file name? If so, why the restriction?

question from:https://stackoverflow.com/questions/65646331/how-to-pass-json-file-name-to-jq

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to specify the jq program to run:

jq . my_file.json

jq -h

The usage line produced by jq -h:

Usage:  jq [options] <jq filter> [file...]

Note that the summary produced by invoking jq with the -h option does not (currently) provide a complete listing of the options. For the supported options, see the jq manual: https://stedolan.github.io/jq/manual/

Two undocumented options of note are:

--debug-dump-disasm
--debug-trace

jq .

Under certain circumstances, jq . can be abbreviated to jq but it's always safe to use the full form; a good rule of thumb is: if in doubt, do so.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...