Top "Exec" questions

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

Does this multiple pipes code in C makes sense?

I've created a question about this a few days. My solution is something in the lines of what was suggested …

c exec fork pipe dup2
How to change the Path variable in ant exec task?

I tried setting the Path variable in ant exec task using this link. But its not working somehow. I am …

ant exec environment-variables setx
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 …

php exec youtube-dl
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 …

android exec rsync su root
Kubectl exec command to write contents to a file in the pod

I am trying below command kubectl exec -it sss-pod-four echo "hi" >> /mnt/sss/testnew.txt But it throws …

kubernetes exec kubectl
In T-SQL how to display columns for given table name?

I am trying to list all of the columns from whichever Adventureworks table I choose. What T-sQL statement or stored …

sql-server tsql exec adventureworks
fork/exec/waitpid issue

I'm trying to determine whether an execution failed by checking the result of waitpid(). However, even when I run a …

c exec fork execvp waitpid
taskkill from PHP exec

I have just tried to execute this: function kill_hr(){ exec("taskkill /IM uper.exe", $output = array(), $return); print_r($…

php windows exec taskkill
How to check if the docker image has all the files?

Is there a way to check if the docker image has all of the files that the Dockerfile copies over …

image docker exec inspect
What happens to malloc'ed memory after exec() changes the program image?

I know that when I call one of the exec() system calls in Linux that it will replace the currently …

c++ c memory-management exec