Re: tcsh init-file like bash?



T <g4173c@xxxxxxxxxxxx> writes:

How can I do this with the "tcsh", if possible? I have users who use
that
for there shell.

Did you try ~/.cshrc ?
This gets executed for each new terminal.

You could set en environment variable, and if it's set, the ~/.cshrc
file does something different.

if ( $?SPECIAL ) then
source /usr/local/share/file
endif

.