Linux使用退格键时出现^H ^?解决方法
在linux下执行脚本不注意输错内容需要删除时总是出现^H
^H不是H键的意思,是backspace。主要是当你的终端backspace有问题的时候才需要设置。
解决方法有两种:
1、要使用回删键(backspace)时,同时按住ctrl键
2、设定环境变量
在脚本的开头或结尾 参数 stty erase ^H stty erase ^?
在bash下:$stty erase ^?
或者把 stty erase ^? 添加到.bash_profile中
在csh下:$stty erase ^H
或者把 stty erase ^H 添加到.cshrc中
原文地址:https://www.cnblogs.com/kenshinobiy/p/9206819.html
时间: 2024-10-31 07:39:06