Shell / Commands

disown

English

Overview

A shell command that detaches a running background job from the shell's job control.

Details

It's used so a process keeps running even after the terminal is closed. Unlike nohup, which must be applied when a process starts, disown can be applied to a job that's already running.

More Linux terms