The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Operating Systems > SCO
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 06-18-2009
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,759
if this
Code:
stty -a
does not show
Code:
intr = ^C
somewhere then you need to change your login script to set it:

Code:
stty erase "^H" kill "^U" intr "^C" eof "^D" susp "^z" kill "^o"
This is just an example, you may not want the other stuff.