Linux Commands Reference - Complete Linux Command Guide

Comprehensive Linux command reference with 150+ commands. Search, filter by category, and view detailed usage examples.

Share
Back to commands

nohup

Run command immune to hangups

Syntax

nohup COMMAND [ARG]...

Common Options

--helpShow help
--versionShow version

Common Examples

nohup ./script.sh &

Run script in background

nohup python app.py > output.log 2>&1 &

Run Python app in background

Related Commands

Related Tools

More Code & Dev Tools