Hi! GNU Time has the advantage of being able to monitor more than just execution times. However, if I try to monitor the maximum memory used by some program, it always shows that as zero. Example: $ /usr/bin/time --format="maxmem %MkB" thunderbird No running windows found maxmem 0kB Best regards Christian
prob best if you try reporting to these guys: http://directory.fsf.org/time.html
OK, I took a look at the code and -- most importantly -- at the getrusage manpage: "Not all fields are meaningful under Linux. In linux 2.4 only the fields ru_utime, ru_stime, ru_minflt, and ru_majflt are maintained. Since Linux 2.6, ru_nvcsw and ru_nivcsw are also maintained" %M would require the ru_maxrss field to be maintained. Resolving this bug as invalid.