0
Say I run the following script that includes growlnotify
.
#! /bin/bash
# do something ...
echo 'I want growlnotify to say this' | \
growlnotify -a '[Some Application]' 'Growl Headline'; \
exit;
If the script is run from Terminal or chmod +x
'd and double-clicked, then growlnotify
works. If it is run from Quicksilver instead, then the script works, but it doesn't say anything to Growl.
How can it be made to work?