disown (built-in Bash command)

Content

 

Data

License: GNU GPLv3 +
Version number: GNU Bash 5
Developer / owner: Free Software Foundation Inc.

Short description:

The manual page and help for the disown built-in Bash command. The disown command removes all JOBS jobs from the active jobs table. Removes the current job memorized by the shell without specifying the JOB NUMBER.

 

 

Man page output

man bash
[...]
       disown [-ar] [-h] [jobspec ... | pid ... ]
              Without  options, remove each jobspec from the table of active jobs.  If jobspec is
              not present, and neither the -a nor the -r option is supplied, the current  job  is
              used.   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 supplied, the -a option means to remove or mark all jobs; the -r op-
              tion without a jobspec argument restricts operation to running  jobs.   The  return
              value is 0 unless a jobspec does not specify a valid job.
[...]

 

 

Help output

disown --help
disown: disown [-h] [-ar] [munkaszám ... | pid ...]
    Munkák eltávolítása az aktuális parancsértelmezőből.
    
    Eltávolít minden MUNKASZÁM munkát az aktív munkák táblájából. A MUNKASZÁM
    megadása nélkül a parancsértelmező által megjegyzett aktuális
    munkát távolítja el.
    
    Kapcsolók:
      -a        minden munka eltávolítása, ha nincs MUNKASZÁM megadva
      -h        minden MUNKASZÁM megjelölése úgy, hogy nem kell továbbadni
                nekik a parancsértelmező által kapott SIGHUP-ot
      -r        csak futó munkák eltávolítása
    
    Kilépési kód:
    Sikerrel tér vissza, ha nem kap érvénytelen kapcsolót vagy MUNKASZÁMOT

 

Related Content