Skip to content

Instantly share code, notes, and snippets.

@isakb
Created September 16, 2013 13:46
Show Gist options
  • Select an option

  • Save isakb/6580890 to your computer and use it in GitHub Desktop.

Select an option

Save isakb/6580890 to your computer and use it in GitHub Desktop.
Convert a whole JS project to CoffeeScript (first step)
for f in `find . -name '*.js'`; do js2coffee $f > ${f%%js}coffee && rm $f; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment