440Forums  |  MacMusic.org  |  PcMusic.org  |  440tv  |  Zicos  |  AudioLexic
Growl   {key13}


A Unix shell script to work with Growl

MacOsxHints

Friday June 8, 2007. 04:30 PM
MacOsxHints

I have written a Unix shell script to call Growl -- here's the source. My script is named growl, and I keep a copy in $HOME/bin. I generally use my Growl script to notify me when a long-running Unix script finishes. If you are imaginative, you could have a cron job that calls Growl when disk space is low: #!/bin/sh df -m / | awk ' /Filesystem/ { next } 200 > $4 { system("growl root only has " $4 "MB available") } ' Or if a critical system has gone off-line: #!/bin/sh if ! ping -c 1 -t 10 critical.system.com; then growl critical.system.com is off-line fi One last example ... if some remote site is off-line, you could have a script that Growls when the site is back on-line: #!/bin/sh while ! ping -c 1 -t 2 remote.site.com do sleep 60 done growl remote.site.c...
have written Unix shell script call Growl here
A Unix shell script to work with Growl Read more at MacOsxHints
feeds.macosxhints.com/~r/macosxhints/recent/~3/123237173/article.php

 

 Related News 
A shell script to empty older items from the trash A shell script to empty older items from the trash
 MacOsxHints 06/19/07 04 PM 
Speck SeeThru Hard Shell Case For 15 Speck SeeThru Hard Shell Case For 15" MacBook Pro
 AppleLinks 06/19/07 06 AM 
Make the Sony Ericsson K510 work with Address Book Make the Sony Ericsson K510 work with Address Book
 MacOsxHints 06/18/07 04 PM 
Bebo, Audible Magic work to axe piracy Bebo, Audible Magic work to axe piracy
 MacNN 06/14/07 11 PM 
Captain FTP 5.0 Adds WebDAV, Growl Support Captain FTP 5.0 Adds WebDAV, Growl Support
 TheMacObserver 06/14/07 01 PM 
Captain FTP 5.0: WebDav, Growl support, GUI Captain FTP 5.0: WebDav, Growl support, GUI
 MacNN 06/13/07 07 PM 
News: RTX drive enclosures work without trays News: RTX drive enclosures work without trays
 Mac Central 06/12/07 06 PM 
FMPro Script Diff 1.0 released FMPro Script Diff 1.0 released
 MacNN 06/04/07 09 PM 
FMPro Script Diff 1.0 Released by .com Software FMPro Script Diff 1.0 Released by .com Software
 TheMacObserver 06/04/07 08 PM 
News: FmPro Script Diff compares FileMaker Pro scripts News: FmPro Script Diff compares FileMaker Pro scripts
 Mac Central 06/04/07 08 PM 
TMO Quick Tip - Enhancing Growl TMO Quick Tip - Enhancing Growl
 TheMacObserver 06/04/07 01 PM 
Script Timer 2.5 Released By Apps & More Software Design - Sh... Script Timer 2.5 Released By Apps & More Software Design - Sh...
 AppleLinks 05/31/07 06 AM 
Script Timer 2.5 brings Automator support Script Timer 2.5 brings Automator support
 MacNN 05/30/07 07 PM 
A Python script to back up DVDs to MP4 files A Python script to back up DVDs to MP4 files
 MacOsxHints 05/30/07 04 PM 
Open Wikipedia Topic from Script Menu Open Wikipedia Topic from Script Menu
 MacOsxHints 05/30/07 04 PM 
A script (with Unicode support) to zip iTunes playlists A script (with Unicode support) to zip iTunes playlists
 MacOsxHints 05/25/07 04 PM 
A script to create multi-DVD-spanning backups A script to create multi-DVD-spanning backups
 MacOsxHints 05/24/07 04 PM 
Appearance Manager allows Internet Explorer 5.1.7 to work wit... Appearance Manager allows Internet Explorer 5.1.7 to work wit...
 Low End Mac 05/23/07 04 PM 
iWork@work Profiles iWork@work Profiles
 Apple HotNews 05/19/07 01 AM 
Top Ten Mac OS X Tips for Unix Geeks Top Ten Mac OS X Tips for Unix Geeks
 MacDevCenter 05/15/07 06 PM 
A script to create HTML tables in Mail A script to create HTML tables in Mail
 MacOsxHints 05/14/07 04 PM 

Search

Mac Zicos
Fri September 5, 06:43 AM
Growl   {key13}