Replace ultrabayd unsafe echo of BEL character with printf
Brought to you by:
ideguy
The contrib/ultrabayd
script uses echo -n "\07" > /dev/tty1
to beep the system speaker. Using echo
with backslash control characters is not safe across different shells. This patch replaces that echo
with an invocation of printf
instead.