PDA

View Full Version : nice and nohup



IronBits
10-14-2003, 02:33 AM
This is what I run now

nohup ./foldtrajlite -f protein -n native -rt -qt -p 10 > /dev/null &

If I wanted to use nice as well, would it be

nice -1 nohup ./foldtrajlite -f protein -n native -rt -qt -p 10 > /dev/null &

or
nohup nice -1 ./foldtrajlite -f protein -n native -rt -qt -p 10 > /dev/null &

or can it be done at all?

Paratima
10-14-2003, 11:46 AM
They should work interchangeably. :cool:

alpha
10-14-2003, 01:15 PM
Agreed.

I assumed the first might just nice-ify the nohup command itself, but upon further investigation it appears not. :)