Forrest logo
back to context overview

exec

List of commands for exec:

  • exec:tldr:02160 exec: Replace with the specified command and change the process name.
    $ exec -a ${process_name} ${command -with -flags}
    try on your machine
    explain this command
  • exec:tldr:5935f exec: Replace with the specified command, clearing environment variables.
    $ exec -c ${command -with -flags}
    try on your machine
    explain this command
  • exec:tldr:74e23 exec: Replace with the specified command and login using the default shell.
    $ exec -l ${command -with -flags}
    try on your machine
    explain this command
  • exec:tldr:8a407 exec: Replace with the specified command using the current environment variables.
    $ exec ${command -with -flags}
    try on your machine
    explain this command
back to context overview