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.
0
votes
2answers
29 views
Shell logout after exec redirection for stdin
As described in advanced bash script-guide, exec can be used to redirect I/O.
So I just write some cases in my shell. Redirecting stdout or stderr works well, but redirecting stdin makes the shell ...
0
votes
1answer
35 views
PHP: Why isn't exec() returning output?
I'm writing a PHP script to be used to check for network connections with Linux shell command ping calling it with PHP's exec():
<?php
// Bad IP domain for testing.
$domain_bad = ...
2
votes
1answer
119 views
How do i correctly utilize pipe, fork and execv to launch and interact with a secondary program?
Programming Language: C and C++ mixed code
Context: There is program 'A' that takes user input from STDIN and outputs a response to STDOUT. The input and output of 'A' are unsuitable for my intended ...
0
votes
1answer
12 views
WshShell Run Without Waiting But Exec for Status Update (run vs exec issue)
Launching a script via JS in a Windows environment.
I need 2 things:
No pop-up window (ie. shell.run(cmd, 0))
I can't wait around for thread to finish (ie. shell.exec() or shell.run(cmd, 0, false))
...
41
votes
9answers
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
20 views
Fork()-ing a new process
Fork()-ing a process will end up calling do_fork() inside kernel, making an exact copy of itself. When I read through books, it says that child of fork will call exec to create the new process.
...
1
vote
2answers
41 views
Execute .exe on java, who require some library
I have a little problem today,I want to use this tool http://freecode.com/projects/jpegoptim on my java program. But on windows it's only work with Cygwin after install jpeg library.
So my question ...
1
vote
2answers
254 views
Can I modify disable_functions using PHP code, or doing it in a way that doesn't involve modifying php.ini?
I was wondering if there was a method of editing disable_functions (so as to enable the exec() function) by using PHP code, or just in a way that won't involve access to the php.ini file? If so, what ...
0
votes
1answer
23 views
javascript equivalent of python's compile and exec
In python, one can take a string containing python code, compile it and run the resulting code with exec.
Can something similar be done with javascript (any implementation is good). My objective is ...
0
votes
0answers
15 views
Calling Valgrind programatically (execing) produces no profiling data
My app has a process A which fork/execs another process B, and the child B then loads a shared library. I want to run Valgrind only on the child process B. Process A also ptrace's process B.
I tried ...
2
votes
1answer
26 views
Is running a C/C++ CGI script on Apache dangerous?
I am currently programming my own little website system (a script that compiles Markdown documents, and puts them in appropriate locations, thus making a quick, static website).
I would like to enable ...
2
votes
2answers
72 views
Piping a subprocesses output directly to stdout (java/clojure)
I'm looking for a way to start up a subprocess in clojure (java is fine to) and have the output of it get sent directly to stdout in real-time. The closest I've been able to find is the Conch library ...
0
votes
1answer
17 views
Composer.phar don't want to run by shell_exec from PHP script. Why?
Trying to execute it with all possible params, such as -d and full path etc.. No errors. When running another commands, all is ok, when running composer from CMD, all is ok too. Have tried exec, ...
5
votes
4answers
69 views
How to run a java application from another java application and keep it running after the master program returns?
I'm trying to run ApacheDS instance from my java application.
I use such run() method of ScriptWrapper class to execute script that is shipped with ApacheDS to run it:
public class ScriptWrapper ...
0
votes
3answers
33 views
sed syntax for replace with reserved characters
I'm having trouble figuring out the correct syntax to search through a text file and insert a new line after the search is found.
I want to add
define('FS_METHOD', 'ftpext');
After
...
0
votes
2answers
36 views
How to capture multi-line output for commands issued with PHP exec?
I am trying to execute system commands in PHP and capture the output of those commands where that output covers multiple lines. I am using exec(), but it seems like it only returns a value for ...
0
votes
1answer
25 views
RegExp constructor properties input
Setting the global flag to true:
<script>
var str="I am really puzzled up";
var str1="Being puzzled is first step towards understanding";
var patt=new RegExp("puzzled","gi");
patt.exec(str);
...
0
votes
0answers
26 views
How to execute ftp “put allo SIZE_IN_BYTES” command
How do I execute ftp "quote allo SIZE_IN_BYTES" command in python script?
For eg: In the FTP of processor connected I have a command as below
ftp>quote allo 24567 (which reserves 24567 bytes ...
1
vote
1answer
21 views
Why doesn't strace show HDD IOCTL syscalls?
When doing an strace -ttT date I miss a lot of syscalls right after the lauch of the executable. After the execve() there are no further syscalls where the date ELF is copied from HDD to memory, does ...
-1
votes
0answers
44 views
How pass java code to python. (Runtime) [closed]
I intent pass the java code to python. The code is:
Runtime runtime = Runtime.getRuntime();
Process process;
process = runtime.exec(command);
process.waitFor();
InputStream is = ...
0
votes
0answers
36 views
XAMPP: PHP exec() not working properly
I am trying to execute a self-written program from PHP using the exec() command using this script:
<?php
exec('./test Hello World!', $output);
var_dump($output);
?>
Whereas running this ...
0
votes
2answers
36 views
Using PHP to call python script [duplicate]
I have the following PHP code that I want to use to call a python script (ring.py)
<?php echo '<p>Hello World</p>';
$output = exec('python ring.py');
?>
The program ...
0
votes
0answers
333 views
paramiko ssh exec_command hang up
I have this script running fine on 2 server but hang up on the third one, all servers have same sshd config.
client = paramiko.SSHClient()
client.load_system_host_keys()
...
1
vote
2answers
33 views
Linux awk string exec variable
i have a variable that when i echo it looks like this:
#echo $var
awk '{print $7 " " $6 " " $8 " "}'
but if I try something like
#ls -lah | exec $var
awk: '{print
awk: ^ invalid char ''' in ...
2
votes
4answers
3k views
Java - Runtime.getRuntime().exec() what's going on?
I have problem with Runtime.exec() in Java
My code:
String lol = "/home/pc/example.txt";
String[] b = {"touch", lol};
try {
Runtime.getRuntime().exec(b);
} catch(Exception ex) {
...
0
votes
3answers
11k views
Why can't use INSERT EXEC statement within a stored procedure called by another stored procedure?
First I try to explain the circumstances.
I store the the filter expression in one column separated by line breaks. The base idea was this:
SELECT
'SELECT ''' + REPLACE(topic_filter,CHAR(10),''' ...
0
votes
1answer
21 views
Very Confusing PDO php exec() connection issue
I have run into a very confusing issue with connecting to a database via PHP PDO using exec().
I have thrown together the following snippet to illustrate my point.
$host = "localhost";
$db_name = ...
0
votes
3answers
42 views
Working of exec family functions
I am studying exec family of functions.Its man page says,it replaces the current process image with a new process image. If it replaces the binary,then after returning back,how does it get the ...
1
vote
1answer
64 views
C - WHILE Loop with fork() / pipe() inside
I have a problem where I must implement a key logger into a shell we have made in class. I am having trouble getting the flow of the program within a while loop to continue looping after a child ...
0
votes
1answer
49 views
C pipe, fork, dup, and exec()
I'm trying to pass list of strings through pipe to child process where it should display through /bin/cat using execl(). I had it working earlier except that the pipe did not close so the program ...
0
votes
1answer
69 views
C system calls pipe, fork, and execl
I fork()'d a child process and created pipes between them and am able to send argument argv[1] to the child. I want the child to take that filename provided from argv[1] and perform an ...
0
votes
1answer
36 views
PHP exec unable to fork IIS 6.0
Trying to run exec() via:
exec("wkhtmltopdf\wkhtmltopdf FedExDomestic.html FedExDomestic.pdf");
I get the following error message:
Warning: exec(): Unable to fork [wkhtmltopdf\wkhtmltopdf ...
0
votes
0answers
25 views
php shell_exec fails when return non-ascii string
using command
$ret = shell_exec($command);
results in $ret being null when $command returns string containing non-ascii characters (papír), but it works when $command returns string without ...
2
votes
1answer
4k views
java.io.IOException: Cannot run program error=2, No such file or directory
I have a java class in which I call a runshellscript method that will execute a script. It worked well with mysql but I cannot seem to find out why it wont work well with psql. Here is an excerpt of ...
1
vote
1answer
16 views
where to find documentation about the special php exec method using back quotes ?
I have some sample program that runs a php script that does some exec command by using the syntax:
echo "Do invoke native commmand: ";
`curl "http://localhost/somescript.php`;
Those " ` " sign ...
0
votes
1answer
65 views
How to execute arbitrary pipes in c and continue
I'm trying to fork and then execute two or more piped commands in the child process. My idea is to use a while loop to continuously fork and execute the command in one process while continuing the ...
0
votes
1answer
28 views
Why node.js can not find the avconv?
Why using the exec in node.js:
child = exec("avconv -i " + result.params.fullDestinationFilename + " -ab 128k -vcodec libx264 -vb 2000k -r 24 -s 1280x720 " + convertedFileName720p + ".mp4", function ...
0
votes
1answer
11 views
tar creates a duplicate within itself. using exec( )
Discovered this when creating a tar.gz file using php's exec(). I get a file within the unzipped version called 'p'. It can be uncompressed and contains the same files as the parent, but does not ...
0
votes
2answers
19 views
Safety of having exec() enabled
I was wondering if it is safe to have exec() enabled on my server. I would like to use it to execute a ping command inside a script to check to see if my servers are running. The ip's that are being ...
1
vote
0answers
60 views
how to run external program in php
I need regular reload named zones from external clients.
But all "remote execution" functions are disabled (system, exec, shell_exec etc.)
I have script like this (with basic http auth):
$ip = ...
0
votes
1answer
40 views
Redirecting STDOUT and STDERR in Shell script
I have a script that uses the exec command to redirect STDOUT and STDERR to a file. The script works fine under Solaris 9. I am testing it on Solaris 10 on VMware and it fails at the exec command.
...
2
votes
4answers
1k views
exec() with timeout
I'm looking for a way to run a PHP process with a timeout. Currently I'm simply using exec(), but it does not provide a timeout option.
What I also tried is opening the process using proc_open() and ...
0
votes
0answers
23 views
IronPython: Catch OverflowError/StackOverflowException
I let the user write a python file and I execute it with exec. But when the user has a OverflowError than the hole program will crash. How can I prevent this?
This does NOT work:
try:
f(*args)
...
1
vote
1answer
49 views
Python exec grep
I'm trying to grep a list of file from the "*.nasl" of "Openvas" which contains a certain port's number.
I can make it directly in the terminal with the command :
egrep --only-match '111' ...
0
votes
1answer
40 views
PHP background process with && in command
I'm aware that we can run background process with the following:
exec("doTask.php $arg1 $arg2 $arg3 >/dev/null 2>&1 &");
(Taken from: Run PHP Task Asynchronously)
However I have a ...
0
votes
0answers
54 views
My shell_exec Command not working on browser but works fine when i load same php page from putty by calling php filename.php
$STATUS = shell_exec("service bearerbox stop");
echo $STATUS;
It says on browser:Stopping Bearerbox: [FAILED].
I tried giving full path als it also didn't worked for me.
My safe_mode is also ...
0
votes
0answers
35 views
Python exec statement binary code
I'm loading the contents of a .pyc file and need to execute it in a specific scope using the exec statement. For a string containing normal Python code, I could do
exec compile(string, filename, ...
1
vote
2answers
2k views
How to get java getRuntime().exec() to run a command-line program with arguments?
I've been trying to write a java program that uses the Runtime.getRuntime().exec() method to use the command-line to run an instance of the program "tesseract".
Some background, Tesseract is a free ...
8
votes
4answers
3k views
Java Runtime exec() fails to escape characters properly
This might already been answered before but that was regarding unicode and I don't think this is unicode (it's in ASCII so...).
When I execute this in my terminal there is no problem what so ever
...
0
votes
0answers
37 views
Java exec Error: Fatal system Error 1020005
I have a problem with a Java program. I uses a tool "ugpc" to get the assembly structure and write it in a textfile. When i start the program under netbeans it writes these files without problem. but ...









