IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32


Ignore:
Timestamp:
Feb 4, 2003, 10:43:59 AM (23 years ago)
Author:
eugene
Message:

added 'mkplot' option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/shell/src/sp_plots

    r16 r32  
    1212setenv DISPLAY $xdisp
    1313
    14 if ("$1" == "init") goto init;
    15 if ("$1" == "plot") goto plot;
    16 if ("$1" == "done") goto done;
     14if ("$1" == "init")   goto init;
     15if ("$1" == "plot")   goto plot;
     16if ("$1" == "mkplot") goto mkplot;
     17if ("$1" == "done")   goto done;
    1718goto usage;
    1819
     
    2930
    3031plot:
    31 # status -c $elixir -C skyprobe --norc --only $script >& /dev/null
    3232 echo "init; doplots; exit 0" | status -C skyprobe --norc $script
     33 exit 0;
     34
     35
     36mkplot:
     37 if ($#argv != 2) goto usage
     38 echo "init; ntplot $2; exit 0" | status -C skyprobe --norc $script
    3339 exit 0;
    3440
     
    4652 echo "USAGE: sp_plots init"
    4753 echo "USAGE: sp_plots plot"
    48  echo "USAGE: sp_plots done (date)"
     54 echo "USAGE: sp_plots mkplot (yyyy/mm/dd)"
     55 echo "USAGE: sp_plots done (yyyymmdd))"
    4956 exit 2;
Note: See TracChangeset for help on using the changeset viewer.