aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/bell.bash
blob: 29a3fb95914eb39d71c8d4077c31559c3bba4668 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Print a terminal bell; good for the end of long commands to prompt me into
# looking at the window:
#
# $ long-boring-command ; bell
#
bell() {
    printf %s $'\a'
}