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