Skip to content

Instantly share code, notes, and snippets.

@aaronup
Created April 8, 2014 14:00
Show Gist options
  • Select an option

  • Save aaronup/10128581 to your computer and use it in GitHub Desktop.

Select an option

Save aaronup/10128581 to your computer and use it in GitHub Desktop.
Coffeescript to JSON
#!/bin/bash
coffee --print --bare $1.coffee | sed '1s/&.//' | sed 's/});/}/' | sed 's/({/{/' | sed "s/\([^ '\"].*[^ '\"]\): /\"\1\": /1" | sed "s/'\(.*\)'/\"\1\"/" > $1.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment