About 2,520,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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 …

  4. 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?

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

    Oct 31, 2009 · exec is a bit easier to grasp, you just tell exec to execute a process using the target executable and you don't have two processes running the same code or inheriting the …

  6. EXEC sp_executesql with multiple parameters - Stack Overflow

    Feb 12, 2015 · How to pass the parameters to the EXEC sp_executesql statement correctly? This is what I have now, but i'm getting errors: alter PROCEDURE [dbo].[usp_getReceivedCases] - …

  7. shell - Understanding the -exec option of `find` - Unix & Linux …

    Sep 1, 2017 · Using -exec in combination with sh -c The command that -exec can execute is limited to an external utility with optional arguments. To use shell built-ins, functions, …

  8. 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?

  9. Should I use `app.exec ()` or `app.exec_ ()` in my PyQt application?

    Nov 22, 2015 · I mean that exec_ will work with any version of python equal to or greater than 2.6 in combination with either pyqt4 or pyqt5. Earlier versions of python are not supported by pyqt.

  10. shell - PHP shell_exec () vs exec () - Stack Overflow

    Feb 21, 2018 · shell_exec returns all of the output stream as a string. exec returns the last line of the output by default, but can provide all output as an array specifed as the second parameter.