4 lines
87 B
Bash
4 lines
87 B
Bash
#!/bin/sh
|
|
# Ring the terminal bell
|
|
# echo "\a" # does not work in some shells
|
|
tput bel
|