Add beep script

This script evaluates the commands specified on the command line and
sends a beep to the terminal after the command completes execution. In
tmux, this results in the window status bar displaying the beep signal.
vimbundler
nirenjan 2013-01-31 14:52:41 -08:00
parent 553b5dc790
commit aacb9c46a2
1 changed files with 8 additions and 0 deletions

8
scripts/beep 100755
View File

@ -0,0 +1,8 @@
#!/bin/sh
if [[ $# -gt 0 ]]
then
eval "$*"
echo -e "\007"
fi