Skip to content

Instantly share code, notes, and snippets.

@yoophi
Created August 16, 2013 05:30
Show Gist options
  • Save yoophi/6247538 to your computer and use it in GitHub Desktop.
Save yoophi/6247538 to your computer and use it in GitHub Desktop.
현재 디렉토리 이하의 js 파일들을 coffee-script 파일로 일괄 변환
for file in $(find . -name '*.js'); do js2coffee $file > $(dirname $file)/$(basename $file .js).coffee; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment