关闭Linux终端tab补全时的提示声
tab键盘补全的声音太大了,受不了,得关闭
查找bell-style这个关键词,取消set bell-style none 这行的注释附
root@ubuntu:~# cat /etc/inputrc | grep bell-style
# set bell-style none
# set bell-style visible
root@ubuntu:~#
通过sed命令,取消set bell-style none 这行的注释附
root@ubuntu:~# sed -i 's/# set bell-style none/set bell-style none/g' /etc/inputrc
检查文件是否修改成功
root@ubuntu:~# cat /etc/inputrc | grep bell-style
set bell-style none
# set bell-style visible
root@ubuntu:~#

浙公网安备 33010602011771号