Re: ctrl+c doesn't work in csh, (solved)# Unix - 噫吁兮,危乎高哉
g*d
1 楼
Add a standard .login file in home dir
including the following
if (! $?ENVONLY) then
# Set the interrupt character to Ctrl-c and do clean backspacing.
if (-t 0) then
stty intr '^C' echoe
endif
# Set the TERM environment variable
eval `tset -s -Q`
endif