DOCTYPE
CTI Software License Agreement
The CTI COURSEWARE you are now using is copyrighted
and/or contains proprietary information by law. All
CTI COURSEWARE will remain the sole property of CTI
or its suppliers. CTI hereby grants you a personal,
non-transferable and non-exclusive right to use, all
CTI SOFTWARE, in whatever form recorded, which is
furnished to you under or in contemplation of this
Agreement. This grant is limited to use on the sin-
gle host processor that you identify on the enclosed
registration card. Use of the CTI COURSEWARE by you
on any processor other than the one identified by
you is strictly forbidden and shall automatically
terminate this license.
UTERMINAL
TERMINAL
NEXT
$V1$
PAUSE
ENCORE5
ENCORE
BOX
COMMAND
GO
nice
SYNTAX
nice [ -+increment] command [ arguments ]
FUNCTION
nice executes command with a
lower CPU scheduling priority. nice lets you
be a nice guy, by letting others go in front of you.
NOTE:
Lower the priority by 15 for the command nroff doc:
under Bourne Shell with: nice -15 nroff doc
under C Shell with: nice +15 nroff doc
Let us assume that there are two processes
running at priority 4 and 5 respectively:
4
5
In addition, there is a process running with
nice at much lower priority:
nice
nroff
20
Let us use the nice command.
Please use nice with a -15 priority on the command nroff doc
$PROMPT$
That is correct!
You've got it on the 2nd try.
Good, you understand the concept.
Please use nice -15 for nroff doc
Please type nice -15 nroff doc
I guess I must type this for you:
$PROMPT$
FORGET1
nice -15 nroff doc
This job will be processed when its priority
will become high enough, i.e. equal to the
standard priority reduced by 15.
The nroff output will then be displayed ...