Index: /trunk/Ohana/src/shell/src/sp_plots
===================================================================
--- /trunk/Ohana/src/shell/src/sp_plots	(revision 31)
+++ /trunk/Ohana/src/shell/src/sp_plots	(revision 32)
@@ -12,7 +12,8 @@
 setenv DISPLAY $xdisp
 
-if ("$1" == "init") goto init;
-if ("$1" == "plot") goto plot;
-if ("$1" == "done") goto done;
+if ("$1" == "init")   goto init;
+if ("$1" == "plot")   goto plot;
+if ("$1" == "mkplot") goto mkplot;
+if ("$1" == "done")   goto done;
 goto usage;
 
@@ -29,6 +30,11 @@
 
 plot: 
-# status -c $elixir -C skyprobe --norc --only $script >& /dev/null
  echo "init; doplots; exit 0" | status -C skyprobe --norc $script
+ exit 0;
+
+
+mkplot: 
+ if ($#argv != 2) goto usage
+ echo "init; ntplot $2; exit 0" | status -C skyprobe --norc $script
  exit 0;
 
@@ -46,4 +52,5 @@
  echo "USAGE: sp_plots init"
  echo "USAGE: sp_plots plot"
- echo "USAGE: sp_plots done (date)"
+ echo "USAGE: sp_plots mkplot (yyyy/mm/dd)"
+ echo "USAGE: sp_plots done (yyyymmdd))"
  exit 2;
