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
1answer
99 views
UNIX: Difference xargs and exec
I am trying to search for the string "rGEO" in a directory by using the following commands:
find . -name "*" -type f -print | xargs grep "rGEO"
...
7
votes
4answers
22k views
How do you run a .bat file from PHP?
Can anyone tell me how to execute a .bat file from a PHP script?
I have tried:
exec("C:\[path to file]");
system("C:\[path to file]");
Nothing is working. I've checked the PHP manuals and googled ...
0
votes
4answers
184 views
Executing a binary on Linux web server through PHP's exec
UPDATE
My directory structure is as follows
http://domainname.com/developer/clientName/ppt/phantom/ // inside this phantom folder, all files are present
After having a chat with Bass Jobsen and ...
-1
votes
1answer
59 views
root access for php exec function [duplicate]
I am trying to write a php program which can execute service fcserver status to find whether my chat room is running or not. If it is running then output should be
and if it's not running then the ...
0
votes
3answers
131 views
PHP exec and OSASCRIPT?
I have a little Apple script as follow:
beep
delay 2
tell application "Finder" to activate
It just makes a sound, wait 2 second and then bring the "Finder" window to the foreground.
When I run it ...
0
votes
0answers
33 views
How to fork and exec new process running as other users in linux?
I have a daemon running as root and it has to fork/exec new process to do work. But new process must not running as root. So how can I fork new process running as other users?
0
votes
1answer
21 views
using exec to append data to file not in current directory
i am trying to set up a little script to allow for php to append data to a file
the file is etc/httpd/conf/httpd.conf
i want to to automatically add data to the file for vhost use...
echo ...
1
vote
1answer
399 views
exec not working with java 1.7.21, but in netbeans works fine
I made a little program and it worked fine, but now. First, it mux the xml chapter file in the mkv file, so we get a muxed mkv file. Some day ago I updated java to 1.7.21 and I think this is the ...
0
votes
0answers
28 views
execute a script php in script php with exec
I try to execute a script ou execute another script
This is my code but i have the error :
Could not open input file: msgAbsReadSM.php
SCRIPT 1 (the connection work perfectly)
$action = 'ssh ...
0
votes
2answers
32 views
why don't we use exec() in php do something?
As we all know,php has some functions like exec(),system() etc.
I use it to open some program like openvpn.
I also can get the all dir's size by du -skh by replace some recursion functions.
but,the ...
0
votes
0answers
18 views
Can't get commands working on Linux server through exec()
I want to run a simple minification PHP script which calls closure compiler through exec() but it is not working. The exact command [java -jar compiler.jar --js /var/www/..../multi-date-picker.js ...
0
votes
1answer
58 views
app syntax for busybox
I'm new in android programming and I have problem:
when I enter this in terminal it works:
busybox mkfs.vfat /data/my.img
but in app it's not working:
Process p = Runtime.getRuntime().exec(new ...
0
votes
2answers
67 views
Execute external command
I do not know whether it is a Scala or Play! question. I want to execute some external command from my Play application, get the output from the command and show a report to user based on the command ...
1
vote
0answers
79 views
I'm having trouble trying to run the HandBrakeCLI with php for some reason
This simple script:
<?php
$cmd='./HandBrakeCLI -i ./a.flv -o ./ab.mkv';
echo exec($cmd.'&');
?>
outputs:
Encoding: task 1 of 1, 0.46 %
Or a similarly low percentage and ...
0
votes
0answers
57 views
Execute git commands with node.js synchronously
I'm currently writing a node.js module. I'm using var exec = require('child_process').exec; from the node.js api. But I have to execute 2 git commands with exec successively.
I always get the ...
0
votes
1answer
66 views
PHP script stopping right after “$com = new Com('WScript.shell');”
I'm trying to debug a huge php script file that when reaches this line
$com = new Com('WScript.shell');
The whole script just dies and stops working. I'm debugging in using Eclipse PDT.
I tried ...
0
votes
2answers
38 views
exec Exit Code Meaning for 11
I'm using the following code on a linux web server
$error = exec('phantomjs table1.js', $op, $code);
echo $code; // prints 11 on screen
table1.js
var page = require('webpage').create();
var url ...
0
votes
1answer
48 views
How can I execute a PHP file using the Ant script with php output in console, while executing file
My ant script
<target name="testRunPHP">
<exec executable="${php}" failonerror="true" dir="${source}">
<arg ...
0
votes
0answers
50 views
exec() does not return to PHP process
I am running FFMPEG from PHP with the EXEC command. I am working on a XAMP stack.
$command = 'ffmpeg -y -i input output 2>logfile';
exec ($command);
// after FFMPEG handling...
As you can see, I ...
0
votes
0answers
95 views
How to receive a sms from a GSM Modem using PHP?
I want to know is it possible to notify an incoming message for the sim which is in a GSM modem ?
1. Connect to the gsm modem which is having a usb connectivity.
2. Once connected when ever a new ...
0
votes
2answers
23 views
Considering safety problems using “exec” php command
I am using the exec php command to launch a jar file in my web server.
Is there any precautions that I have to adopt to prevent any safety issues?I mean,could be dangerous use the exec comand?
0
votes
1answer
30 views
How can I use execle with a va_list like execvpe?
The version of glibc I am using does not have the execvpe function. However, I need that exact functionality for what I am trying to do. The user will pass in an argument list that is their linux ...
0
votes
1answer
58 views
calling shell_exec(“php myscript.php”) goes into infinite loop
I decided to fork out my php script because it takes too long to run. When I ran it shell_exec() call on a local linux machine, I did not see the infinite loop problem, but on a hosted machine, the ...
0
votes
1answer
68 views
user www-data cannot remove file
In php I do the following:
exec('remove_file.sh', $output, $return);
where remove_file.sh is the following script:
#!/bin/sh
rm -f /tmp/test.pdf
I verified that this script is run by www-data ...
3
votes
2answers
82 views
Opening .txt file in execl()
How can I open a .txt file using execl() function? Is there any other function in c to open a file in gedit in Ubuntu.
Regards
0
votes
2answers
49 views
exec command is not working in php script
I have a java file and it will generate itunes report. I want to execute this within my php script. Im using the exec() function in php:it is working properly in linux.But not in windows.Am i missing ...
1
vote
1answer
53 views
Forking with command line arguments
I am building a Linux Shell, and my current headache is passing command line arguments to forked/exec'ed programs and system functions.
Currently all input is tokenized on spaces and new lines, in a ...
2
votes
2answers
45 views
Why does this code fail? child not waiting
Ok so I have been trying to learn to master child processes and properly waiting for them to finish. I have read a lot of Stack Overflow Q/A and I still can't seem to get this to work as I want it to. ...
4
votes
2answers
3k views
Writing android app that executes linux commands
I have an compiled executable that is supposed to copy itself from the res folder, and into the /data/data/package-name/ folder, and change the permissions, and then execute. Every step completes all ...
1
vote
1answer
1k views
Android Runtime.getRuntime().exec
i was reading around on how to get the PID of a running process in android, that is not running inside dalvik (eg, background native process) on a custom device (chinese box) running android 2.2, and ...
1
vote
1answer
606 views
Android Runtime.getRuntime().exec and rsync
I'm tryng to run rsync on my device. I have the binary in /system/xbin/rsync and I'm trying to launch it with Runtime.getRuntime().exec. I'm new to Android programming, so I don't get yet if I have to ...
6
votes
1answer
6k views
Running Shell commands though java code on Android?
Took me a while but I came back to this project with greater understanding of how to code. Here's a working way to do this for future reference of whoever
Define the string
String[] commands = ...
1
vote
1answer
758 views
Need to run shell command android
I am trying to run these shell commands via java but no success.Code executes perfectly but .so file do not exectue. while i use these commands in adb everything work perfeclty.
private void ...
1
vote
2answers
186 views
android getRuntime().exec() with cat command
I am using the process class to run this command
/sdcard/file1.mpg /sdcar/file2.mpg > /sdcard/out.mpg
Here is how I am trying to do it:
Process processx = Runtime.getRuntime().exec(new String[] ...
2
votes
1answer
855 views
Run cat command in Android
I want to concatenate two files in android. I did this from the Terminal Emulator app using the command cat file1 file2 > output_file. But it does not work when I try to execute it from my code.
...
1
vote
2answers
145 views
how to pass the arguments to the shell command through java?
I am new to this kind of integration of java with Unix.
what i am trying to do is
String command="passwd";
Runtime rt=Runtime.getRuntime();
try {
Process pc=rt.exec(command);
...
1
vote
2answers
1k views
What permissions do I need to run a shell command programmatically in Android?
try{
Process process;
process = Runtime.getRuntime().exec(command);
BufferedReader in = new BufferedReader(new
...
2
votes
3answers
3k views
Run shell commands from android program
This question has been asked here before but the solutions provided are not working..I am trying to display the contents of /data/dalvik-cache folder. I know that to do this we need to become su. I ...
1
vote
1answer
491 views
Run Linux terminal commands in Android program
I am developing a small app that would synchronize a directory present in my android phone with that of my laptop. I rooted my phone and also installed rsync in that so as to synchronize the ...
1
vote
0answers
17 views
Using PHP, how can I get multiple shell commands to run simultaneously? [duplicate]
I've got a project in which a user can upload audio and video files. When these files are uploaded, they are processed server-side using ffmpeg. However, I have noticed that multiple conversions ...
2
votes
1answer
309 views
Perl: Unable to exec
I am trying to run few child processes on different platforms in parallel. Parent should only proceed further once all the child processes have completed on respective platforms.
The problem is ...
0
votes
1answer
56 views
execl command to write on file
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define MAXLINE 512
main(int argc,char* argv[]){
int k;
for (k=0; k<argc; k++) {
if (k%2==0) {
...
0
votes
2answers
81 views
PHP execute a script in the background
I have to execute a php script (a.php) in the background. I tried this but it's not working:
<?
$cmd = "php /home/megad404/www/prove/a.php &> /dev/null &";
exec('/bin/bash -c ...
0
votes
1answer
62 views
php - get value of variables defined in shell script
How can I get value of a variable defined in a shell script? (the script is a configuration file, only contains variable-definitions) I cannot use "source" command in exec:
echo exec('var=2; echo ...
0
votes
1answer
25 views
Pass hexdata to an externam program from PHP
here is my issue:
I wish to pass some hexadecimal data to an external app from PHP:
exec('echo "'.$message.'" | /usr/bin/gateway');
and $message comes from user input:
test'"/'\'/"\""//
...
0
votes
1answer
49 views
pg_dump doesn't work in php, but working in .bat file
I made some .bat program that making backup of my database.
When i open cmd and run bat file through command line everything working fine.
But I also need php file to execute that .bat file.
I have ...
1
vote
2answers
68 views
Progammatically append to file in PHP
I am trying to programmatically append an RSA public key to the authorized_keys file through a website and haven't been able to make any solutions I found work. I have tried using PHP's ...
1
vote
1answer
21 views
excev() help: can I use “./program”?
I have been trying to use excev to launch a program that I made. I need to say something like execv("./myprogram");. However, that does not work. I have tried execv("myprogram");.
Help anyone?
0
votes
0answers
45 views
Save the output of execl command in c to the same file
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define MAXLINE 512
main(int argc,char* ...
0
votes
1answer
56 views
PHP exec with nohup
I currently use nohup to run a long php script and redirect the live results to a file using this command
nohup php long_file.php >logs 2>&1 &
so i just go and visit logs file ...





