Skip to content

Instantly share code, notes, and snippets.

@d48
Created June 28, 2013 14:55
Show Gist options
  • Save d48/5885289 to your computer and use it in GitHub Desktop.
Save d48/5885289 to your computer and use it in GitHub Desktop.
bash command to output name and description for list of package.json in 2 directories below
for pkg in `find . -d 2 -name package.json`; do cat $pkg | json name description; echo ""; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment