Maybe I'm confused, but I can't seem to get the -J option of ps(1) to work for me.
With four jails running I get the same (amount) of output from ps, no matter whether I omit -J, or use any one of the four jail ids:
I would expect to see a number smaller than 208 on the 2nd through 5th lines of output.
What am I doing wrong?
With four jails running I get the same (amount) of output from ps, no matter whether I omit -J, or use any one of the four jail ids:
Code:
# for j in '' $(jls jid); do ps ${j:+-J$j} -auxww | wc -l; done
208
208
208
208
208
I would expect to see a number smaller than 208 on the 2nd through 5th lines of output.
What am I doing wrong?