Index: trunk/Ohana/src/opihi/lib.shell/command.c
===================================================================
--- trunk/Ohana/src/opihi/lib.shell/command.c	(revision 3187)
+++ trunk/Ohana/src/opihi/lib.shell/command.c	(revision 3901)
@@ -1,4 +1,6 @@
 # include "opihi.h"
 # define VERBOSE 0
+
+static int Ncalls = 0;
 
 int command (char *line, char **outline) {
@@ -7,4 +9,6 @@
   char **argv, **targv;
   Command *cmd;
+
+  Ncalls ++;
 
   /* force a space between ! and first word: !ls becomes ! ls */
@@ -73,2 +77,6 @@
 
 }
+
+void print_ncals () {
+  fprintf (stderr, "Ncalls command: %d\n", Ncalls);
+}
