Run a program at an altered priority (POSIX)
nice [-nprioritylevels] command [arguments]...
Deprecated:
nice [-prioritylevels] command [arguments]...
The nice utility invokes the specified command with a modified priority, usually making the command behave "nicer" towards competing processes.
If no prioritylevels option is specified, the program is invoked at a priority that is one level lower than the parent's current priority (i.e. it is invoked with a "nice increment" of 1).
If a prioritylevels option is specified, it is subtracted from the parent's current priority and the program is invoked at the resultant priority. If the resulting priority is not a valid priority, nice will write a diagnostic message to the standard error and will exit with an exit status of 1.
If you enter: | nice will: |
---|---|
a positive value (e.g. -n2 or -n+2) | lower the priority of the program, making it "nice" |
a negative value (e.g. -n-2) | raise the priority of the program, making it "mean" |
Users may adjust the priority as follows:
If you're: | You can change to any priority: |
---|---|
a normal user | from 1 to 19 |
root | from 1 to 29 |
Run make at one priority lower than the parent's priority (be nice):
nice make application
Run make at two priorities lower than the parent's priority (be nicer):
nice -n2 make application
Run make at two priorities higher than the parent's priority (be mean):
nice -n-2 make application
If the operation is successful, the exit status of the invoked command is returned. If an error occurs, the exit status is as follows:
In contrast to other operating systems, the QNX interpretation of the nice value substantially affects the priority of the process. Rather than representing a fraction of a priority, the granularity of the nice value in QNX is of a "whole" priority level. For example, where the following would have a marginal effect on the execution of myprog on some operating systems:
nice -n5 myprog
on QNX it would lower the priority of myprog by five full priority levels, and could have a significant effect on myprog's execution time.