Created
August 3, 2012 07:55
-
-
Save philipjkim/3245587 to your computer and use it in GitHub Desktop.
Cakefile Skeleton
This file contains 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
{exec} = require 'child_process' | |
task 'test', -> | |
cmd = 'ls' | |
options = '-lrt' | |
exec "#{cmd} #{options}", (err, stdout, stderr) -> | |
console.log err if err | |
console.log stdout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment