Remove Double Quotes From Strings In jq Output
Use the -r
flag to remove double quotes from output strings:
echo '["alfa"]' | jq -r '.[0]'
Output:
alfa
vs. without the -r
:
echo '["alfa"]' | jq '.[0]'h
Output:
"alfa"
-- end of line --
Use the -r
flag to remove double quotes from output strings:
echo '["alfa"]' | jq -r '.[0]'
alfa
vs. without the -r
:
echo '["alfa"]' | jq '.[0]'h
"alfa"