# -*- shell-script -*-
# This file defines a ksh alias.
# It also ends up in a zsh function directory
# so that zsh users can run this shell function with ksh scripts
if [ -n "${KSH_VERSION+x}" ]; then
   clearLmod()
   {
     module --force purge
     eval $($LMOD_DIR/clearLMOD_cmd --shell bash --full "$@")
   }
fi

