About 85,800 results
Open links in new tab
  1. exec (3) - Linux manual page - man7.org

    The exec () family of functions replaces the current process image with a new process image. The functions described in this manual page are layered on top of execve (2).

  2. exec (system call) - Wikipedia

    In computing, exec is a functionality of an operating system that runs an executable file in the context of an already existing process, replacing the previous executable.

  3. exec command in Linux with examples - GeeksforGeeks

    Aug 30, 2024 · The 'exec' command is a versatile tool in the Linux shell scripting arsenal. It allows for efficient process management by replacing the current shell with a command instead of creating a …

  4. Linux exec Command With Examples - phoenixNAP

    Dec 11, 2025 · The Linux exec command executes a Shell command without creating a new process. Instead, it replaces the currently open Shell operation. Depending on the command usage, exec has …

  5. Bash Exec Builtin Command - Computer Hope

    Jun 1, 2025 · On Unix-like operating systems, exec is a builtin command of the Bash shell. It lets you execute a command that completely replaces the current process. The current shell process is …

  6. How to use the command `exec` (with examples)

    Dec 17, 2024 · The exec command is a powerful feature in Unix-like operating systems, including Linux, that runs specified commands by replacing the current shell process with a new process for the …

  7. exec command in Linux: A Complete Guide Better 2026

    Jun 25, 2025 · We’ll cover how to use exec effectively, troubleshoot common issues, and show you how to leverage its power for advanced tasks. Whether you’re a seasoned Linux administrator or a …

  8. exec - Linux Command Guide | LinuxConcept

    The exec command is a shell built-in that replaces the current shell process with the specified command, without creating a new process. When used without a command, it can be used to manipulate file …

  9. The “exec” Command in Linux [8 Practical Examples]

    Mar 31, 2024 · The exec command can be used for multiple purposes in Linux. The main purpose of the command is to replace the current process with a new command that takes over the memory, …

  10. Mastering the Linux `exec` Function: A Comprehensive Guide

    Nov 14, 2025 · The exec family of functions in Linux is a set of system calls that are used to execute a new program. When an exec function is called, the current process image is completely replaced by …