File input/output: Difference between revisions

Undo revision 355614 by Peak (talk)
(Undo revision 355614 by Peak (talk))
Line 2,272:
=={{header|jq}}==
If the input file consists of ordinary lines of text, then the lines can be copied verbatim, one by one, as follows:
<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>
 
2,472

edits