#! /bin/bash
#------------------------------------------------------------------------------
# Script to keep all the disk cross-mountings up if running AMD.
#
# D. Schlegel, Princeton, 8 Mar 2001
#------------------------------------------------------------------------------

# List each element of PATH...
ls `echo $PATH | sed 's/:/ /g'` > /dev/null
# The following 2 lines are taken care of with the listing of IDL_PATH
#ls $IDLSPEC2D_DIR > /dev/null
#ls $IDLUTILS_DIR > /dev/null
ls $IDL_DIR > /dev/null
# List each element of IDL_PATH, but need to strip any leading plus signs...
ls `echo " "$IDL_PATH | sed 's/:/ /g' | sed 's/ +/ /g'` > /dev/null
ls $ASTROLOG_DIR > /dev/null
ls $SPECLOG_DIR > /dev/null
ls $SPECFLAT_DIR > /dev/null
# List one file in each raw data subdirectory, since there may be links
# to different filesystems...
ls $RAWDATA_DIR/*/frames.list > /dev/null
ls $SPECTRO_DATA > /dev/null

#------------------------------------------------------------------------------
