follow this easy way to disable the beep sound.
locate your ~ directory in windows
in my case, since i install MinGW in D:/MinGW, my MSYS root is here
D:\MinGW\msys\1.0
open notepad / wordpad or other editor, type the following and save it as "inputrc", without the quotes and file extension
set bell-style none
the last step is using bash to rename the file to .inputrc
C:\WINDOWS>bash
bash-3.1$ cd ~
bash-3.1$ mv inputrc .inputrc
bash-3.1$ cd ~
bash-3.1$ mv inputrc .inputrc
Post a Comment