bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ionice bash pid in bash_profile Fails


From: Bob Proulx
Subject: Re: ionice bash pid in bash_profile Fails
Date: Mon, 22 Nov 2010 15:22:47 -0700
User-agent: Mutt/1.5.20 (2009-06-14)

Roger wrote:
> # See ionice manfile - give high priority to Bash
> ionice -c 2 -n 0 -p `echo $$`

You don't need to use backticks to echo out the value of $$.  Just use
it directly.

  ionice -c 2 -n 0 -p $$

Bob



reply via email to

[Prev in Thread] Current Thread [Next in Thread]