I found a minor inconvenience in Jan's proc-time
program, namely that it tried to take care not
only of its own flags but also of the flags of the
command to be executed.
The following patch solves the problem.
diff -u proc-time.c~ proc-time.c
--- proc-time.c~ Mon May 29 21:46:36 2000
+++ proc-time.c Sat Jun 17 00:54:04 2000
@@ -20,7 +20,7 @@
char const* name = "proc-time";
char const* version = "1.3.55";
-char const* short_opts = "bhi:ntvV";
+char const* short_opts = "+bhi:ntvV";
struct option long_opts[] =
{
{"heartbeat", no_argument, 0, 'b'},
/Mats