Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
{ exec } = require 'child_process'
|
||||
|
||||
for word in [ 'Enjoy', 'Rosetta', 'Code' ]
|
||||
exec "echo #{word}", (err, stdout) ->
|
||||
console.log stdout
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# The "master" file.
|
||||
|
||||
{ fork } = require 'child_process'
|
||||
path = require 'path'
|
||||
child_name = path.join __dirname, 'child.coffee'
|
||||
words = [ 'Enjoy', 'Rosetta', 'Code' ]
|
||||
|
||||
fork child_name, [ word ] for word in words
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# child.coffee
|
||||
|
||||
console.log process.argv[ 2 ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue