We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Example 1
#!/bin/bash
filename="$1" cat $filename | python -c 'import sys; import simplejson as json; print json.dumps( json.loads( sys.stdin.read() ), sort_keys=True, indent=4)' | grep name | awk '{print $2}' | sed -e 's/^"//g' | sed -e 's/",$//g'