jf "jf: %q" "JSON Format"
jf is a jo alternative to help safely format and print JSON objects in the commandline.
However, unlike jo
, where you build the JSON object by nesting jo
outputs,
jf
works similar to printf
, i.e. it expects the template in YAML format as the first argument, and then the values for the placeholders as subsequent arguments.
bash
jf TEMPLATE [VALUE]...
Where TEMPLATE may contain the following placeholders:
%q
: Placeholder for quoted and safely escaped JSON string.%s
: Placeholder for JSON values other than string.%%
: Placeholder for a single %
(i.e. escaped %
).And [VALUE]... are the values for the placeholders.
Use %%
to escape a literal %
character.
Example:
```bash jf "hello: %q" "world"
jf "hello: {beautiful: %q}" "world"
jf "d: {m: %s, n: %s}" 10 20
jf "{a: {b: %s, c: {d: %s, f: %s}, d: {e: [%s, %q]}}, b: {e: [%q]}}" 0 1 true 2 sam hi
```