About 2,530,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. 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 …

  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 are the uses of the exec command in shell scripts?

    The exec built-in command mirrors functions in the kernel, there are a family of them based on execve, which is usually called from C. exec replaces the current program in the current …

  6. 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, …

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

  8. Insert results of a stored procedure into a temporary table

    Mar 17, 2009 · That's because using EXEC to run the dynamic SQL creates its own session, so an ordinary temporary table would be out of scope to any subsequent code. If a global …

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