Operating System - HP-UX
1834456 Members
2920 Online
110067 Solutions
New Discussion

Control + c not working in console

 
SOLVED
Go to solution
M.Thomas
Frequent Advisor

Control + c not working in console

Hi Admins,
Control + c is not working in console , how to enable that or pls tell me how to interpret a command in console

Regards
Thomas
2 REPLIES 2
AwadheshPandey
Honored Contributor
Solution

Re: Control + c not working in console

in users profile these lines shud be there
[intr "^C" ] as per your requirment, if it is a serial console refer the link downside.

# Set up the terminal:
if [ "$TERM" = "" ]
then
eval ` tset -s -Q -m ':?hp' `
else
eval ` tset -s -Q `
fi
stty erase "^H" kill "^U" intr "^C" eof "^D"

http://www.uclibc.org/lists/busybox/2002-June/006397.html
It's kind of fun to do the impossible
Basheer_2
Trusted Contributor

Re: Control + c not working in console

Tom,

man stty will give you all the options.