To submit a job at a greater niceness, precede it with the modifier
nice. For example, the following command runs an
awk command at low priority:
% nice awk -f proc.awk datafile > awk.out
By default, the csh version of
nice will submit this job with a
nice level of 4. To submit a job with an
arbitrary nice number, use
nice one of these ways, where
n is an integer between 0 and 20:
% nice + n command
% nice - n command
The +n designation requests a positive
nice number (low priority);
-n requests a negative nice
number. Only a superuser may request a negative
nice number.