Is there any way to remove ^C when you hit CTRL+C in the shell include with RHEL santiago? I have permission to edit my own .bash_profile.
|
|
||||
|
Edit (or create) your
This will instruct the GNU Readline library (which Bash uses) to not output (echo) any control characters to the screen. The setting will be active in all new Bash sessions thereafter (and in any other utility that uses the Readline library). Notice that if your Unix system comes with a system-wide configuration file for the Readline library (usually
Another alternative is to make a personal copy of the system-wide configuration file and then modify that. |
|||||||||||||||||
|
|
Try the following:
For an explanation see this great and detailed post from Stéphane Chazelas which also explains some other If you want to make that change permanent (and you are using |
|||||||||||||||||||||
|
set echo-control-characters off– Sundeep yesterday