#!/bin/csh -f
#+
# OSIRIS library of scripts
#
# NAME
#      isetnum - wrapper for osirisSetnum imag 
#
# SYNOPSIS
#     isetnum [x] 
#
# DESCRIPTION
#      Shows or modifies oids.SETNUM
#
# ARGUMENTS
#     x - integer to set oids.SETNUM
#
# OPTIONS
#
# EXAMPLES
#    isetnum 5  - set oids.SETNUM to 5
#    isetnum    - show oids.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 imag $*
