Index: trunk/Ohana/src/opihi/cmd.astro/star.c
===================================================================
--- trunk/Ohana/src/opihi/cmd.astro/star.c	(revision 34088)
+++ trunk/Ohana/src/opihi/cmd.astro/star.c	(revision 36679)
@@ -6,4 +6,15 @@
   double max;
   Buffer *buf;
+  int VERBOSE;
+
+  VERBOSE = TRUE;
+  if ((N = get_argument (argc, argv, "-q"))) {
+    VERBOSE = FALSE;
+    remove_argument (N, &argc, argv);
+  }
+  if ((N = get_argument (argc, argv, "-quiet"))) {
+    VERBOSE = FALSE;
+    remove_argument (N, &argc, argv);
+  }
 
   Nborder = 3;
@@ -36,5 +47,5 @@
   }
 
-  get_aperture_stats (&buf[0].matrix, x, y, dx, Nborder, max);
+  get_aperture_stats (&buf[0].matrix, x, y, dx, Nborder, max, VERBOSE);
   
   return (TRUE);
