Remove quotes with SED
Why use sed?
| tr -d '"'
Right tool for the right job.
A little late to the party, this this utility sounds like it can be useful for parsing the json twitter returns: http://stedolan.github.io/jq/
You can do:
...existing_commands | sed 's/"//g'