JSONL (JSON lines) is often more convenient to parse instead of a regular JSON structure.
I know it is quite easy to convert JSON to JSONL, by piping jq -c '.[]' after the windapsearch command, but relying on an external program (which is not installed by default) and having to type a longer command (prone to error) is not convenient.
@ropnop,
JSONL (JSON lines) is often more convenient to parse instead of a regular JSON structure.
I know it is quite easy to convert JSON to JSONL, by piping
jq -c '.[]'
after thewindapsearch
command, but relying on an external program (which is not installed by default) and having to type a longer command (prone to error) is not convenient.Cheers !