Bash - disown (Remove job)

Bash Liste Des Attaques Ovh

Bash - disown (Remove job)

About

Remove a job from the shell's job list.

Syntax

disown [-ar] [-h] [jobspec ...] 

where:

  • Without options, each jobspec is removed from the table of active jobs.
  • If the -h option is given, each jobspec is not removed from the table, but is marked so that SIGHUP is not sent to the job if the shell receives a SIGHUP.
  • If no jobspec is present, and neither the -a nor the -r option is supplied, the current job is used.
  • If no jobspec is supplied:
    • the -a option means to remove or mark all jobs;
    • the -r option restricts operation to running jobs.

Return value

The return value is 0 unless a jobspec does not specify a valid job.

Documentation / Reference





Discover More
Bash Liste Des Attaques Ovh
Bash - Builtin Commands

builtin refers to: a builtin command. See or to the specific builtin command. See (useful when defining a function whose name is the same as a shell builtin) The builtin command execute the specified...
Bash Liste Des Attaques Ovh
Bash - process

This article is the bash Process. To see how to manage another general linux process, see The process running the command is created. The process inherits the stdin, stdout, and stderr from...



Share this page:
Follow us:
Task Runner