0
votes
1answer
11 views
How to use _spawn or _exec for bootstrapping?
After writing the following program, it does not appear to pass arguments to the called application. While researching _spawnv and what it can do, _execvp was found as what appeare …
0
votes
1answer
6 views
Problem with running the Nutch command from PHP exec()
My Nutch directory lies in /home/myserv/nutch/nutch-1.0/
My php applictaion is in the diretcory /home/myserv/www/
Theres a a php file in my /home/myserv/www/ diretcory that runs …
1
vote
3answers
76 views
Exec sproc from Powershell
I would like to execute a stored procedure from Powershell (v2) against a SQL Server 2008 database. Coming from using C# as my primary language, I'm doing it in that fashion. For e …
0
votes
3answers
637 views
msbuild exec task with for
I am trying to run the following commands as part of a msbuild script:
for /R . %f in (*.targets) do copy /Y "%f" "C:\Program Files (x86)\MSBuild\Microso
ft\VisualStudio\TeamBuild …
6
votes
5answers
183 views
Difference between “system” and “exec” in Linux?
What is the difference between system and exec family commands? Especially i want to know which one of them creates child process to work?
0
votes
3answers
65 views
Is it possible using Linux’s clone() system call to run multiple applications in the same address space?
If you don't pass the CLONE_VM flag to clone(), then the new process shares memory with the original. Can this be used to make two distinct applications (two main()'s) run in the s …
0
votes
3answers
107 views
How to wait for process child?
I do the usual fork + exec combination:
int sockets [2];
socketpair (AF_LOCAL, SOCK_STREAM, 0, sockets);
int pid = fork ();
if (pid == 0) {
// child
dup2 (sockets[0], STDIN_F …
0
votes
4answers
198 views
Convert std::vector<char*> to a c-style argument vector arv
I would like to prepare an old-school argument vector (argv) to use within the function
int execve(const char *filename, char
*const argv[],char *const envp[]);
I tried it …
2
votes
3answers
114 views
Php : running ssh from Windows to login to a Linux and run a script
Hi !
Here's my goal :
I have a Windows XP PC with all the source code in it and a development database.
Let's call it "pc.dev.XP".
I have a destination computer that runs Linux.
L …
3
votes
9answers
928 views
Java: Executing a Java application in a separate process
Can a Java application be loaded in a separate process using its name, as opposed to its location, in a platform independent manner?
I know you can execute a program via ...
Pro …
2
votes
4answers
178 views
exec and fork()
What are the differences between fork() and exec()?
1
vote
2answers
39 views
how to select a particular table from a storedprocedure which returns multiple table?
Hi all,
I have a storedproc which has multiple select statement.
When it is executed in sql server , it returns multiple tables.
I need a query which will select a particular tab …
0
votes
1answer
67 views
Run exec function in PHP
Hi All,
I am using exec function to run a bat file and change the default printer. exec file is doing fine, bat file alone is doing fine, but the printer doesn't change when I'm ca …
0
votes
2answers
49 views
strtok and execlp in a mini-shell
Hi fellows!
I'm writing a mini-shell to get more familiar with Unix process management in C. It's reading stuff from commandline and passes these arguments via execlp to the syste …
0
votes
2answers
87 views
flex C exec file
is there any way to execute C language executable file from Flex?
