Created
August 16, 2013 05:30
-
-
Save yoophi/6247538 to your computer and use it in GitHub Desktop.
현재 디렉토리 이하의 js 파일들을 coffee-script 파일로 일괄 변환
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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