>>>>> "Ben" == Ben Phillips ">pynk@cc.gatech.edu> writes:
Ben> Does: 'nice make bzImage && nice make modules && nice make
Ben> modules_install'
Ben> do the same thing as:
Ben> 'nice make bzImage && make modules && make modules_install'
No. The shell breaks that up at the &&'s into separate
commands, so what's run in the second instance is:
nice make bzImage
make modules
make modules_install
You could run the entire thing as:
nice sh -c 'make bzImage && make modules && make modules_install'
Ben> And how would I know what priority these things are running
Ben> at anyway? Is there a utility like 'time' only that spits
Ben> out priorities?
`ps l' shows priorities, and you could probably snarf it out
of /proc//stat if you figure out which field it is.
--
Fletch | "If you find my answers frightening, __`'/|
">fletch@phydeaux.org | Vincent, you should cease askin' \ o.O'
678 443-6239(w) | scary questions." -- Jules =(___)=
| U
--
To unsubscribe: mail ">majordomo@ale.org with "unsubscribe ale" in message body.