This tag refers to the starting of another, subsidiary program. It is named after the family of POSIX system calls whose name starts with “exec” (notably “execve”) though similar concepts exist on other platforms as well, especially when combined with the starting up of another process.

learn more… | top users | synonyms

0
votes
2answers
128 views

How to run a java program using apache commons-exec?

I am trying to run java code dynamically in my java application GUI. I have tried the following code: Sring tempfile="java -classpath "+wrkdir+"/bin "+runfile; CommandLine ...
6
votes
7answers
842 views

PHP: exec() doesn't run in the background even with “>/dev/null 2>&1 &”

I'm calling this in my php script: exec("gutschein.php >/dev/null 2>&1 &"); Calling the script (generates a pdf and sends it away by e-mail) works, but the process is not running ...
0
votes
2answers
709 views

JavaScript Document Exec Command

Perhaps you have heard about JavaScript Document Exec Command, which we often use to make rich text editor. It had a bad reputation before as Internet Explorer worked differently with it. Personally, ...
0
votes
2answers
85 views

PHP exec operator doesn't execute specific command

One of my lines of shell command is not executing despite other similar lines working. I am running on a linux machine using a Ubuntu 12.04 based OS. I have tried using exec as well, still doesn't ...
9
votes
1answer
466 views

Change [exec] label in output for Ant <exec> task

I am using Ant's <parallel> task to perform multiple simultaneous targets that use <exec> tasks, but it's difficult to read the output because it is interleaved. Is there any way to change ...
1
vote
4answers
434 views

Updated - PHP exec, system or passthru all remove single or double quotes

When ever i try to execute a command to the shell via php's exec/passthru/system functions it seems to remove quotes from the command. $str_file = '1323988284_700.csv'; exec("/usr/bin/lftp -e 'set ...
0
votes
1answer
73 views

sorting random numbers sent to child using exec

What I am trying to do is send random numbers generated by a parent and then sent to the child, who then execs "sort -nr", and then sends back the sorted numbers back to the parent. I found this ...
0
votes
1answer
36 views

Prevent terminal prompt from printing on exec() call

SO, There are many similar questions, however none that I have been able to use. My code snippet is as follows: for(int j=0; j<N; j++) { pid_t pid = fork(); if (pid == -1) { ...
4
votes
3answers
6k views

PHP exec - check if enabled disabled

I want to know if there's a way to check in a php script if exec() is enabled or disabled on a server.. Thanks!
9
votes
5answers
3k views

Check if “exec” is disabled [duplicate]

Is there any function in PHP that I can use to detect whether or not the exec function is available?
0
votes
0answers
101 views

C++ pipe is only returning the first value

I'm very new to C++ and am having an issue with piping. I'm trying to generate a list of random numbers in a loop, send them to a child process via a pipe, sort them, and return them back to the ...
1
vote
2answers
223 views

Avoid JVM startup delay when running JAR through PHP using exec

Is there any way to avoid the delay caused by the JVM starting up each time you run an exec command in PHP? I have two JARs for encryption and decryption that I need to run using PHP. Both run on the ...
-3
votes
1answer
90 views

I am making linux command Program by C-language. and I want to know what is wrong the code?

I wanna ask about how to make exec process programing by C. Now, I typed like these code, and I use strtok and strdup. my code wrong assign value from input, so could you see my code and could you ...
-6
votes
2answers
117 views

Create linux environment in C using execl and fork() [closed]

I have created a program that acts like a Linux environment. You put in a command and it does it for you. #include <stdio.h> #include <string.h> int main() { int pid; int status; ...
-2
votes
1answer
59 views

php exec('cd executables/') alternative [closed]

My server does not run exec() functions. But a PHP script of me have this exec() functios in it: exec('cd executables/ && php executables/import_run.php 3 en_US > ...
1
vote
1answer
17 views

Forward errors from exec() to a file

I am using exec(). How can I send anything that is echoed out into one file and all errors into another file? Here is what I currently have: exec("$php_locataion $cwd/phpExcel.php \"$data\" > ...
1
vote
2answers
177 views

PHP Exec Ping Destination host unreachable

I am pinging a couple computers (192.168.200.1 and 192.168.200.2) on my corporate lan that are behind a router (192.168.200.254). function pingAddress($TEST) { $pingresult = exec("ping -n 1 $TEST", ...
1
vote
2answers
88 views

PHP Script works in the terminal but not the browser

I am trying to execute a exec command, and I am having problems. When I run the following code, it doesn't work when I run it through the browser. but if I take the output of $str copy and paste it ...
1
vote
0answers
47 views

queries about running a php script(or other script) from java app using runtime->exec [closed]

I have some queries about trying to run a PHP script(or other script) by invoking it from within a Java app using runtime.getRuntime.exec("php script.php"); Is there some way to run a php script(or ...
1
vote
2answers
2k views

executing ffmpeg command with getRuntime().exec() command

i want to run ffmepg command directly on android. a simple command ffmpeg -i vid.mp4 out.mp4 now the issue is that i have searched the internet and found the best android ffmpeg can be found here ...
1
vote
3answers
55 views

Calling specific version of python from PHP

I'm setting up a big system relying on python 2.7 being run through php. The call is always something like: exec('python test.py'); However no matter what I do PHP keeps using python 2.4 for ...
0
votes
1answer
39 views

Tar path issue in PHP

I am trying to create a TAR through exec in PHP, which will contain lots of folders. Each of the included folders represent a server path. Unfortunately my script to create this TAR is not working and ...
1
vote
5answers
2k views

Executing an exec() or system() in PHP and do not wait for output

I want to trigger a shell command in eider exec() or system() from PHP script but it is a task that take a while to complete, is there a way to trigger it and continue running the PHP page load ...
0
votes
5answers
373 views

why python exec define class not working

Here is code, the class 'demo' defined by exec is not working when create a demo instance in _getTestObj(). FileName: test.py class runOneIni(): def _getTestObj(self): ...
0
votes
2answers
68 views

PHP exec() with Pygments for PHP

I'm currently using the Pygments for PHP plugin that is located here: http://derek.simkowiak.net/pygments-for-php/. The line that actually calls Pygments from that code is an exec() passed: ...
0
votes
0answers
313 views

Windows PHP exec / shell_exec with phantomjs always returns null

I'm running PHP 5.4.9 on Windows server I've tried running all script commands in PHP (exec, shell_exec, system, proc_open, passthru). All seem to return empty or null. I've added phantomjs as a ...
0
votes
4answers
94 views

Executing bash script with tilde in path

I am trying to execute in linux: command[0] = "~/test/bin/runScript_sh"; Runtime.getRuntime().exec(command); But get an exception java.io.IOException: Cannot run program error=2, No such file or ...
-1
votes
3answers
72 views

How to delay exec command in php

I know this kind of question has been asked many times, but I haven't found a suitable answer yet. Here it is: I have a site - apache/php/mysql on debian. I've managed to allow www-data to execute ...
0
votes
1answer
111 views

php form with exec and sed commands

I'm trying to create a php form to change values in a file on my vps. Here is the code I am trying: <?php echo "<form "; $type = (int)$_POST['animal_type']; echo ...
2
votes
2answers
139 views

PHP - Can't execute c++ binary files?

I am trying to execute c++ binary files, that i have generated using cmake and make command, from PHP. If i try to execute the same command from terminal everything works perfect but from php nothing ...
1
vote
1answer
322 views

Display running child process' output in nodejs (windows)

For example sake, I'm running the most basic webServer in node (I'm using windows) with the following code (named server.js): var http = require('http'); http.createServer(function (req, ...
0
votes
1answer
76 views

It seems php exec is not waiting for execution

Here's the thing, $file="myjpg.jpg"; $runme="/var/www/html/facedetect/facedetect ".$file; $output=shell_exec($runme); var_dump($output); Turns NULL But in reality the exact same command run ...
0
votes
2answers
321 views

Exec stored procedure with select as parameter

I have a stored procedure on sql server that takes 2 parameters. I want to run the stp for every row returned by a select. CREATE PROCEDURE stpMySTP @param1, @param2 AS BEGIN --select something ...
1
vote
0answers
163 views

Execute Grails custom script in _Events.groovy with Ant exec during build process

Grails app version: 2.0.4. I have a Grails custom script called MyScript.groovy in the scripts folder, pretty much like this: includeTargets << grailsScript("_GrailsInit") target(main: "Run ...
0
votes
0answers
78 views

Return machine IP address using nodejs exec on windows command line

I'm attempting to return the IP address of the Windows machine into a node process using child.exec. Simple command lines seem to work but anything vaguely complex fails - anyone got any suggested ...
3
votes
2answers
60 views

PHP opening an executable?

I have this code to open an executable file: exec("C:/Users/Affex/Desktop/Blockland/".$session->username."/".$session->username.".exe ptlaaxobimwroe -dedicated"); It opens the file ...
1
vote
2answers
113 views

Bash : Reset / Reloading bash, completely (alias and function)

I want to reset the shell, as I log out / log in, reloading aliases, functions, from scratch. But don't talk about source ~/.bashrc nor . ~/.bashrc ! Why ? Because source or . just enrich the ...
3
votes
2answers
257 views

Querystring character limit for PHP scripts run through command line?

(Backstory: My PHP script is executing another PHP script through the command line (PHP's "exec()" command) so that the cURL session the target script creates doesn't cause the original PHP script to ...
0
votes
1answer
42 views

PHP CLI errors from unix commands

I am writing php script, which will be used for making sites from "standart" site. There's a lot of unix shell commands, and I've found the problem with displaying errors. Example: I need to check ...
0
votes
2answers
121 views

Not able to run specific terminal commands from java program(Eclipse)

Using ProcessBuilder in JAVA I am able to run simple terminal commands like ls,pwd,echo etc..etc... But following code is getting terminated , don't know why?? public static void main(String[] args) ...
41
votes
8answers
24k views

node.js execute system command synchronously

I need in node.js function result = execSync('node -v'); that will synchronously execute the given command line and return all stdout'ed by that command text. ps. Sync is wrong. I know. Just ...
0
votes
1answer
86 views

How to exit with Ctrl+D like bash with execl?

I'm doing : execl("/bin/bash", "/bin/bash", NULL); When I do a Ctrl+D, it directly exit. How can I do the same as bash and write exit before exiting ? Do I have to add a flag or something to execl? ...
0
votes
0answers
25 views

Open process in safe_mode() in PHP

I have a site on a hosting server and I want to compile and run .c source code, but for this I need to execute some file. My question is not how to do this, but how to do this on a server with ...
0
votes
2answers
93 views

Multiple execlp not working

I need some help here. I need to execute all three execlp() once I run the program but what happen is that only case 0 is executed.I changed pid to 1 and case1 gets executed and so on. Tried putting ...
9
votes
7answers
1k views

Python: How to pass arguments to the __code__ of a function?

The following works: def spam(): print "spam" exec(spam.__code__) spam But what if spam takes arguments? def spam(eggs): print "spam and", eggs exec(spam.__code__) TypeError: ...
2
votes
3answers
2k views

Android “permanent” superuser permission for an app?

To clarify, I use this code to get superuser permission for my app so I can access root and whatnot: public String runProcess(String[] functs) { DataOutputStream dos; DataInputStream ...
0
votes
2answers
75 views

Fork-server and grandchildren for exec

I need help with fork-server. What I want to do is accept a client then fork to let other clients connect and at the same time redirect stdout & err to client. The client should then be able to ...
1
vote
1answer
173 views

youtube-dl and php exec

I have installed youtube-dl on my CentOS 6 / Plesk 10 Dedicated server, and via SSH, everything works like a charm ! The thing is I'm trying to write a php script which takes a POST parameter in ...
0
votes
1answer
296 views

wget inside exec does not generate any output or saves the webpage

I'm working on a small, personal project that can save an entire webpage onto my local disk with PHP with wget. Basically when I pass an URL, it should save the webpage, fixing the URLs and images by ...
0
votes
2answers
119 views

Can't run PHP using exec Command

I've a problem in running a continous background process in which the parent initiate 2 or 3 child process then end itself, child processes have heavy computation so they will take alot of time. I'm ...

1 3 4 5 6 7 38