#! /bin/csh -f #+ # NAME: # www_help_shell # PURPOSE: # Starts IDL non-interactively for main program www_help_info # CATEGORY: # www_help # CALLING SEQUENCE: # www_help_shell $1 $2 # INPUTS: # $1 full path to www_help_info.pro # $2 full path to temporary file # OUTPUTS: # (writen to temporary file) # SEE ALSO: # www_help_get_info, www_help_info # PROCEDURE: # The www_help package spawns this script. It doesn't # care which shell is used. Currently csh is used. # Similar code using bash is appended to this file. # # Sets env. var. IDL_STARTUP to null string # Sets env. var. temp_file to $2 # Starts idl with main program $1 # MODIFICATION HISTORY: # JAN-2002, Paul Hick (UCSD/CASS; pphick@ucsd.edu) #- setenv IDL_STARTUP setenv temp_file $2 idl -quiet $1 exit 0 #! /bin/bash -norc #IDL_STARTUP='' #temp_file=$2 #export temp_file #idl -quiet $1 #exit 0