http://stedolan.github.io/jq/
sudo apt-get install jq
Key all of the values from a json file
jq '.[]' en.json
Get all of the keys from a json file
jq 'keys[]' en.json
Get all of the keys, comma separated
jq 'keys' en.json

Technical notes, and other ideas.
http://stedolan.github.io/jq/
sudo apt-get install jq
Key all of the values from a json file
jq '.[]' en.json
Get all of the keys from a json file
jq 'keys[]' en.json
Get all of the keys, comma separated
jq 'keys' en.json