On Mon, 2004-05-24 at 11:36 -0400, Will Cohen wrote:
/usr/bin/time xterm
I don't think this is especially meaningful. If you just want to test the time it takes to load, maybe you want something instead like: time xterm -e ''
Cheers, Jason.
I wanted to see the number of major and minor page faults. Using "time" uses the shell's builtin time which doesn't return that information. Need to have the explicit path in there to avoid using the shell's builtin.
-Will