robbyrussell (owner)

Revisions

gist: 159076 Download_button fork
public
Public Clone URL: git://gist.github.com/159076.git
Embed All Files: show embed
shout.sh #
1
2
3
4
5
6
7
# notify me by echo, text-to-speech, AND growl.
function shout {
  echo $1 && say $1 && growlnotify -m $1;
}
 
# usage
shout "I'm using this in my bash scripts so that my scripts talk to me and get my attention."