Skip to content

Instantly share code, notes, and snippets.

@mofukuma
Created October 14, 2015 03:52
Show Gist options
  • Save mofukuma/2cdb4fc5fd1a88fba84e to your computer and use it in GitHub Desktop.
Save mofukuma/2cdb4fc5fd1a88fba84e to your computer and use it in GitHub Desktop.
WindowsのバッチをCoffeeScriptで書く雛形
#&cls&coffee %0&pause > nul&exit /b 0
cp = require('child_process')
p = console.log
$ = (a) ->
r = ""+cp.execSync(a)
p "$ #{a}\n => #{r}"
return r
$ "echo test"
ret = $ "node -v"
p "nodejsバージョン:" + ret.match( /[0-9\.]+/ )[0]
p "\n引数: #{process.argv}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment