mirror of
https://github.com/idrainformatica/PecFlow.git
synced 2026-06-16 12:45:42 +02:00
fase 5
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
var spawn = require('child_process').spawn
|
||||
var path = require('path')
|
||||
|
||||
var prog = path.resolve(process.argv[2])
|
||||
var progArgs = process.argv.slice(3)
|
||||
|
||||
console.log('probing program', prog)
|
||||
|
||||
var nodeArgs = [
|
||||
'-r',
|
||||
path.join(__dirname, 'include.js')
|
||||
]
|
||||
var nodeOpts = { stdio: 'inherit' }
|
||||
var child = spawn('node', nodeArgs.concat(prog).concat(progArgs), nodeOpts)
|
||||
|
||||
console.log('kill -SIGUSR1', child.pid, 'for logging')
|
||||
Reference in New Issue
Block a user