Created
June 22, 2013 05:21
-
-
Save ntietz/5835963 to your computer and use it in GitHub Desktop.
A simple announce script which will give a verbal notification when your program finishes running.
Usage: announce bin arg1 args2 ... (exactly the same as "time").
Alternate: announce -m "say this instead" bin arg1 arg2 ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PROG=$1 | |
| shift | |
| ARGS=$@ | |
| $PROG $ARGS | |
| say -v Zarvox $MSG |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment