About 2,380,000 results
Open links in new tab
  1. Please explain the exec () function and its family

    May 21, 2020 · What is the exec() function and its family? Why is this function used and how does its work? Please anyone explain these functions.

  2. What does `exec "$@"` do? - Unix & Linux Stack Exchange

    Sep 5, 2018 · The exec will replace the current process with the process resulting from executing its argument. In short, exec "$@" will run the command given by the command line parameters …

  3. bash - What does an "exec" command do? - Ask Ubuntu

    Sep 18, 2014 · I have seen exec command used inside scripts to redirect all output to a file (as seen in this). But in simple words, what does it do?

  4. Difference between exec, execvp, execl, execv? - Stack Overflow

    Apr 18, 2019 · Possible duplicate of What are the different versions of exec used for in C and C++?, What is the difference between the functions of the exec family of system calls like exec …

  5. What does set -e and exec "$@" do for docker entrypoint scripts?

    Jan 4, 2018 · At the exec line entrypoint.sh, the shell running as pid 1 will replace itself with the command server start. This is critical for signal handling. Without using exec, the server start …

  6. c - Differences between fork and exec - Stack Overflow

    Oct 31, 2009 · The use of fork and exec exemplifies the spirit of UNIX in that it provides a very simple way to start new tasks. Note the use of the word task here, I have deliberately avoided …

  7. understanding bash "exec 1>&2" command - Stack Overflow

    Oct 1, 2012 · function example() { exec 1>&2 cat <<EOT Script requires at least one parameter. EOT exit 1 } As I understand, exec 1>&2 means that everything from this point one will be …

  8. What is the difference between the functions of the exec family of ...

    Dec 29, 2013 · exec () family of functions replaces existing process image with a new process image. This is a marked difference from fork () system call where the parent and child …

  9. Difference between "system" and "exec" in Linux? - Stack Overflow

    Nov 8, 2009 · What is the difference between system and exec family commands? Especially I want to know which one of them creates child process to work?

  10. What are the different versions of exec used for in C and C++?

    Apr 24, 2011 · The differences are combinations of: L vs V: whether you want to pass the parameters to the exec'ed program as L: individual parameters in the call (variable argument …