Files
cshenv/tcshrc.system
2026-06-23 19:09:17 -04:00

33 lines
973 B
Tcsh

_debug "Running tcshrc.system..."
setenv CSHENV_SYSTEM `uname`
_debug 'Initially detected that you are running on a "'${CSHENV_SYSTEM}'" system'
# Cygwin systems are kinda funky -- so we fix them up to say "Cygwin"
#if( echo ${CSHENV_SYSTEM} | grep -i "cygwin" >& /dev/null ) then
#setenv CSHENV_SYSTEM Cygwin
#endsw
_debug 'Detected that you are running on a "'${CSHENV_SYSTEM}'" system'
# Source the common bits, since many systems often have lots in common.
# For the moment, everything is in here.
# This file is DEPRECATED from the start!
source ${CSHENV_DIR}/tcshrc.system.common
# Systems may need many system specific fixes for their systems
# Such bits go into system-specific files.
safe_source ${CSHENV_DIR}/tcshrc.system.${CSHENV_SYSTEM}
if( ! $?CSHENV_SYSTEM_CONFIGURED ) then
echo 'Warning- Unable to find a proper system configuration set for "'${CSHENV_SYSTEM}'"'
endif
###########################
# vim: ft=tcsh
###########################