gusmueller

osx bits - just a little collection of little things that I do on my osx boxes.

Here's a command line app that I've got in my ~/bin folder called "say":

#/usr/bin/sh
echo say \"$*\" | /usr/bin/osascript

I call it after a process that might take a while or something like this:

curl -O http://a.b.com/bigfile.zip; say the app is all done

and then I get a little notification when it's done.