Messages in this thread |  | | | Date | Wed, 24 Sep 2008 09:54:03 +0200 | | From | "Jeroen van Rijn" <> | | Subject | Re: Create real-time process from shell script | |
On Wed, Sep 24, 2008 at 3:55 AM, gshan <gshan@alcatel-lucent.com> wrote:
> Hello, Is there any way (or linux utilities) could be used to create a
> real-time process in shell script?
>
> Thanks,
> Gavin
nice -20 <command> <args>
or:
<command> <args> & pid=$!
renice -20 -p $pid
-- Jeroen
|  |