Top "Exec" questions

This tag refers to the starting of another, subsidiary program.

exec: executable file not found in $PATH

I am trying to send the HUP signal to tor in Go. command := exec.Command("pidof tor | xargs kill -HUP") …

go exec tor
How to make shell exec run in background while php continues

I have ffmpeg doing a video conversion in a PHP file and it works as it should. The problem is …

ffmpeg exec background-process
Execute two commands with docker exec

I'm trying to do two commands in docker exec. Concretely, I have to run a command inside a specific directory. …

linux docker command composer-php exec
Check if "exec" is disabled

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

php exec
php shell_exec permission denied

shell_exec("touch /Users/Nerses/Downloads/ads.txt 2>&1") I have a problem with the PHP exec(shel_exec) …

php exec shell-exec
Runtime.exec on argument containing multiple spaces

Can anyone make the following run? public class ExecTest { public static void main(String[] args) { try { //Notice the multiple spaces …

java runtime exec spaces
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 …

android permissions exec su
Shell_exec php with nohup

I think there are tons of similar posts but I haven't yet found a solution after searching around. Basically, I'm …

php exec shellexecute shell-exec nohup
How could I pass a dynamic set of arguments to Go's command exec.Command?

I came across a question on here relating to arguments being passed to Go's exec.Command function, and I was …

go command exec
php background process using exec function

I have searched a lot to find the exact answer but didn't find any. many people mentioned that we should &…

php exec background-process