File input/output: Difference between revisions

(Undo revision 355614 by Peak (talk))
Line 2,274:
<lang jq>jq -M --raw-input --raw-output '. as $line | $line' input.txt > output.txt
</lang>
 
 
If the input file consists of JSON entities, and if we wish to "pretty print" each, then the following will suffice:<lang jq>
jq -M '. as $line | $line' input.txt > output.txt
</lang>
 
Note that the variable, $line, is included in the above programs solely to satisfy the task requirements. In practice, the jq program in both cases would normally be just: `.`
 
=={{header|Julia}}==
2,460

edits