loading and executing a new child process
0
votes
0answers
36 views
Node.JS Spawn inside an SELinux Sandbox
I am building a Node.JS application that involves redirecting user input into a server-side command. Of course, that could be catastrophic to security, so I desire to run the child command inside an ...
0
votes
0answers
27 views
Handling spawn thru thread in tcl
I am trying to handle spawn process thru thread , but its throwing error "invalid command" .
But without thread its working fine .
set listner [thread::create {
package require Expect
proc ...
0
votes
2answers
34 views
Storing PID of the script which is being called by another script
I am a total newbie with shell scripting and have been trying write some and get my simple application running. Although I am able to start the application, I cant stop or restart it, because it is ...
0
votes
0answers
25 views
java web start to spawn a process
I have a java webstart application that should be use on LAN private network website so its not for public usage. What i am trying is to spawn a command line window through the webstart application by ...
0
votes
0answers
25 views
How to dispatch request to child process base on the url
I want to create a master process and spawn several childprocess in nodejs. To make one child relates to a specific url and the master as a dispatcher, so they can share only one port and there is no ...
0
votes
0answers
20 views
“Spawning” a sprite precisely inside another sprite
In the 2d game that I'm creating I have one class for the bullet and one for the gun, the thing is that it doesn't look like the bullet come out from the gun. I have made it so that the player and the ...
1
vote
2answers
31 views
Running / spawning commands vs files in c#
I can in C# do the following:
var pSpawn = new Process
{
StartInfo = { WorkingDirectory = @"C:\temp", FileName = fileToRun, CreateNoWindow = true }
};
pSpawn.Start();
and ...
0
votes
1answer
69 views
NodeJS not spawning child process except in tests
I have the following NodeJS code:
var spawn = require('child_process').spawn;
var Unzipper = {
unzip: function(src, dest, callback) {
var self = this;
if (!fs.existsSync(dest)) {
...
0
votes
0answers
33 views
Catching return code from an expect script within an expect script
I have a first bash script test.sh which only contains:
#!/bin/bash
exit 1
And a second script in expect which only contains:
#!/usr/bin/expect
exit 1
I'm trying to catch the return code when I ...
0
votes
1answer
45 views
Re-set spawn after collision
Basically what happens is objects spawn off screen at random positions and then flow in and out of the screen view.
as they flow of screen they reset at a random position off screen again, however I ...
0
votes
1answer
90 views
“spawn.h not found” while installing octopress on Cygwin
I have been trying to install octopress on cygwin. I have googled but no avail. I hope that someone can suggest a hack (no matter how complicated) to resolve this.
I followed the octopress ...
0
votes
1answer
37 views
Rspec and spawn gem: How to test “should_receive” in spawned_out process
I have a controller action which calls a spawn block
class MyController < ApplicationController
....
def send_product_mails
if @user.has_rights?
spawn_block(:nice => 19 ) do
...
0
votes
1answer
44 views
Capture IO of spawned program in Java
I'm writing a program in Java which relies on a pre-compiled third party JAR residing in the same directory as mine. At runtime, my program checks if this file exists, then downloads it if it ...
1
vote
1answer
115 views
NodeJS: Events on child processes
var spawn = require("child_process").spawn;
var child = spawn("scp" , ["-P9022", path_to_file, scp_remote_path])
child.stdout.on("data", function(){
//Automatically type in password
})
I'm ...
0
votes
0answers
38 views
Spawn inside spawn nodejs
I'm new on nodejs, and here is my question.
A bit of background:
I have two commands I run on my shell.
The first one will set some env variables and log me into a new shell.
For example:
$ cmdpk ...
0
votes
1answer
50 views
Why doesn't spawn/3 (MFA) work in Erlang?
Here is a simple server in Erlang. I am trying to spawn using spawn/3 but I have to resort to using spawn/1 in order to get it to work.
-module(server_by_name).
-export([start/0]).
start() ->
...
0
votes
3answers
122 views
Fork a child process and inject dependency
I currently have an operation in a module that is blocking, so I'm looking at making this into a child process that I fork instead.
If I want to do that, then I of course need to modify the ...
0
votes
0answers
79 views
Run Ant target in background without using spawn=true
I would like to start a server in background, go back and execute some other targets, and then stop the server when Ant finishes executing all targets.
I have come up with the following two solutions ...
1
vote
2answers
390 views
node.js spawning a child process interactively with separate stdout and stderr streams
Consider the following C program (test.c):
#include <stdio.h>
int main() {
printf("string out 1\n");
fprintf(stderr, "string err 1\n");
getchar();
printf("string out 2\n");
...
0
votes
1answer
43 views
Android deamon thread test
I'm testing Think in Java's Multi thread like this in Android:
private void testDeamon(){
Thread d = new Daemon();
System.out.println(
"d.isDaemon() = " + d.isDaemon());
...
5
votes
1answer
759 views
Nodemon-like task in Grunt : execute node process and watch
I feel like I'm missing something.
Here is what I want to achieve :
Having a grunt task that executes my server.js and runs watch task in parallel. It feels to me that this is precisely one of the ...
0
votes
1answer
292 views
Grunt spawned process not capturing output
I have spawned a process using Grunt, but nothing that is written to the output stream (such as console.log) is being displayed in the console.
I would like Grunt to display any output from the ...
2
votes
1answer
566 views
Running Node app through Grunt
I am trying to run my Node application as a Grunt task. I need to spawn this as a child process, however, to allow me to run the watch task in parallel.
This works:
grunt.registerTask('start', ...
0
votes
3answers
97 views
erlang spawn process error?
I'm following this tutorial and I tried to compile the event.erl and run it according to
6> c(event).
{ok,event}
7> rr(event, state).
[state]
8> spawn(event, loop, [#state{server=self(), ...
1
vote
1answer
105 views
Capture a child process's stdout with libuv
I'm using libuv. I've read http://nikhilm.github.com/uvbook/processes.html and still cannot work out how to capture the stdout of a child process so that it is available in the parent (but not in ...
0
votes
1answer
162 views
having issues working with movie clips inside of an array [as3]
In a game I'm making, I'm trying to have sprites put on top of a hit box. The best way I could think of accomplishing this is to make two arrays; one for the hit boxes, and one for the sprites, and ...
0
votes
1answer
214 views
Spawning more threads than you have in a gevent pool
As I understand it the idea of a pool in gevent is to limit the total number of concurrent requests at any time, to a database or an API or similar.
Say I have code like this where I am spawning more ...
1
vote
2answers
117 views
Suspend a child process spawned by java
I have a java program which uses Runtime.exec() to spawn a child process, but I need to be able to programatically suspend it and then start it running again from where it left off. The Java Process ...
0
votes
0answers
20 views
Spanw/add objects on click with Flash
I was wondering if its possible on flash to make the mouse like add objects to a scene when I click on it. Like for example I have a blanck page, and wherever I click on it it will add a dot.
And it ...
2
votes
2answers
365 views
ruby Process.spawn stdout => pipe buffer size limit
In Ruby, I'm using Process.spawn to run a command in a new process. I've opened a bidirectional pipe to capture stdout and stderr from the spawned process. This works great until the bytes written ...
-1
votes
1answer
111 views
popen2: reading works, writing doesn't
The following function executes a process, returns its PID and provides file descriptors for reading and writing:
pid_t popen2(const char **command, int *infp, int *outfp)
{
int p_stdin[2], ...
2
votes
1answer
104 views
How to wait for the spawned process
I'm trying to write a simple script which can execute mongodb server in the background. Currently I use Process.spawn method. It works but I have to wait some time for mongod to be process fully ...
0
votes
1answer
98 views
Restricting a buffer to the output of a nodejs child process
I'm trying to execute a command line command(here: cat) from nodejs using the spawn command.
var spawn = require('child_process').spawn;
var cat = spawn('cat');
result = new Buffer(2048);
...
2
votes
1answer
174 views
Random textures in XNA
Okay so i have this game I'm working on, I'm new to XNA(I'm using 4.0) and what i want to do is have a different texture every time an enemy is spawn.
So i have these images "image1.png", ...
1
vote
1answer
218 views
nodejs, widows 7, spawn chrome, can't set user-data-dir
I'm trying to open chrome with nodejs on windows7 using spawn. It seems to work for all arguments except for setting the user-data-dir . --user-data-dir works directly from command line and also works ...
0
votes
0answers
70 views
What are the drawbacks of using child_process.spawn vs. native bindings in NodeJS
I'm currently working on a NodeJS SCEP server. It heavily uses the openssl executable to work.
Basically, I'm using child_process.spawn to wrap openssl functionality.
I'm probably sure it would be ...
1
vote
1answer
79 views
VB.NET application randomly spawns another instance of itself during use
I have a Windows forms application which I have a bit of a sporadic issue with. The application would randomly start/spawn another instance of itself without any warning or reason. I only have one use ...
1
vote
1answer
114 views
pexpect timing out incorrectly if there is a system time change by the sub process
Redhat linux
I am spawning a child process which is a shell script that updates system time. I have a timeout of 30 minutes in expect like below. My child process updates system time to 4 hours ahead ...
0
votes
1answer
206 views
Is there a race consuming stdout from child_process.spawn in node.js?
I'm using node.js to spawn a child process and consume its output, using the child.stdout.on('data') hook.
child.stdout is itself a stream, and over on the streams page I notice a fat warning ...
0
votes
1answer
195 views
Spawning process with arguments in node.js
I need to spawn a child process from node.js, whilst using ulimit to keep it from using to much memory.
Following the docs, it wasn't hard to get the basic spawn working: child = spawn("coffee", ...
0
votes
0answers
47 views
Best way to set up a spawn system?
I was wondering what the best way to do this is. I want 2 sprites that fall from the top of the screen (landscape) at different times and once they reach the bottom they instantly respawn at a new ...
2
votes
3answers
82 views
How to spawn another main()?
Is it possible to run one main() application from another as if it was ran from the command prompt?
I know I can use Runtime.exec() but if it is possible to run from pure java?
UPDATE
If I just ...
7
votes
1answer
314 views
Why is Pexpect intermittently hanging (not detecting EOF) after executing certain commands?
Context:
I have some code written using pexpect, whose job is to give "live" output of a command. I.e. print something out when a command generates some output, or soon after, rather than waiting ...
0
votes
0answers
93 views
pexpect with redirect, pipe, or wild cards (>, |, or *)
i have the script ssh to particular host and check core file is present or not if it present i am filter the corefiles update in overallcorefilelist this script will be used in run periodically
...
3
votes
1answer
96 views
Why is the 'monitor' option used in erlang:spawn_opt disabled?
I happen to read about a spawn_opt called monitor: http://www.erlang.org/doc/man/erlang.html#spawn_opt-2
But when I use it, I got this:
1> gen_server:start(some_module, [], [{spawn_opt, ...
0
votes
2answers
71 views
How to provide parameters to commands called by `system()`?
I want to execute the following commands from a C program:
amixer --quiet set Master 5+
amixer --quiet set Master 6-
Here, 5 and 6 are not fixed values. They are Input Arguments of the code which ...
1
vote
1answer
278 views
nodejs' spawn and exec using pdf2swf
I hope that there is someone that can help with this problem since I don't get it myself.
I compiled the newest version of pdf2swf and everything is working fine, except of when I want to use it as a ...
0
votes
1answer
345 views
Where do the spawn() functions (declared in “spawn.h”) come from?
I am unable to compile this simple program
#include<stdio.h>
#include<conio.h>
#include<spawn.h>
#include<process.h>
int main(){
printf("Spawning new process...\n");
...
0
votes
0answers
254 views
Syntax for ssh command execution through Node js
I need to execute some ssh commands and the same has to be invoked from Node.js. I know that we can spawn this as a child process, however since i am not successful in setting up ssh public/private ...
2
votes
1answer
1k views
node.js spawned process sticks around if script is killed
Is it possible to make sure that processes spawned with node.js child_process will be killed when the parent is killed?
Here's an example script
var spawn = require('child_process').spawn;
var ...
