Skip to content

Instantly share code, notes, and snippets.

@usingthesystem
Created October 18, 2014 14:42
Show Gist options
  • Select an option

  • Save usingthesystem/d1da5e21c179ba2593b4 to your computer and use it in GitHub Desktop.

Select an option

Save usingthesystem/d1da5e21c179ba2593b4 to your computer and use it in GitHub Desktop.
convert dir full of js files to coffee in the terminal
find . -type f -name '*.js' | while read f; do echo "grinding $f to ${f/.js/.coffee} "; js2coffee "$f" > "${f/.js/.coffee}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment