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

nice

Run command with specified priority

Syntax

nice [OPTION]... [COMMAND [ARGS]...]

Common Options

-nSet nice value (-20 to 19)

Common Examples

nice -n 10 ./script.sh

Run script with low priority

nice -n -5 ./important.sh

Run with higher priority

nice ./backup.sh

Run with default priority

Related Commands

Related Tools

More Code & Dev Tools