About 701,000 results
Open links in new tab
  1. Executive Orders – The White House

    5 days ago · Providing for the Closure of Executive Departments and Agencies of the Federal Government on December 24, 2025, and December 26, 2025

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

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

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

  5. exec command in Linux: A Complete Guide Better 2025

    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 …

  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 …

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

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

    Mar 31, 2024 · The exec command in Linux is a pretty straightforward command which replaces the current terminal process with a new command. Here you will learn some useful examples …

  9. Linux exec Command with Practical Examples | LabEx

    Explore the Linux exec command and its practical applications, including understanding the exec system call, executing external commands, and redirecting input/output.

  10. exec Man Page - Linux - SS64.com

    To execute a program/script in the current working directory use: You might be tempted to 'fix' this by adding '.' to $PATH but this is widely considered to be bad practice for security reasons. …