I want print \"/\"
separator inside output title.
curl -s http://cd0a4a.ethosdistro.com/?json=yes \\
| jq -c \'.rigs|.\"0d6b27\",.\"50dc35\"|[.
Since you already use string interpolation for that specific field, simply include the character you need (slash /
) inside the string, like this:
curl ... | jq -c '... [.version,.driver,.miner,"\(.gpus)/\(.miner_instance)"] ...'
In your case (the complete line):
curl -s http://cd0a4a.ethosdistro.com/?json=yes | jq -c '.rigs|."0d6b27",."50dc35"|[.version,.driver,.miner,"\(.gpus)/\(.miner_instance)"]|@csv' | sed 's/\\//g;s/\"//g' | gawk 'BEGIN{print "version" "," "GPU_driver" "," "miner" "," "gpu"} {print $0}' | csvlook -I