#!/bin/csh -f
#+
# OSIRIS library of scripts
#
# NAME
#      ssetnum - wrapper for osirisSetnum spec
#
# SYNOPSIS
#     ssetnum [x] 
#
# DESCRIPTION
#      Shows or modifies osds.SETNUM
#
# ARGUMENTS
#     x - integer to set osds.SETNUM
#
# OPTIONS
#
# EXAMPLES
#    ssetnum 5  - set osds.SETNUM to 5
#    ssetnum    - show osds.SETNUM
#
# ENVIRONMENT VARIABLES
#
# FILES
#
# SERVERS & KEYWORDS
#    
#
#
# SCRIPTS CALLED
#
# EXIT STATUS
#     0 - normal exit, no error
#     1 - script aborted by an interrupt
#     2 - syncheck error
#     3 - error parsing command line input
#     other errors...
#
#
#
# Modification History:
# 20200713 - jlyke Original
#------------------------------------------------------
# Boiler plate for "-h" support for command autohelp.

if ("$1" == "-h") then
    help $0
    exit $status
endif

osirisSetnum spec $*
