We Recommend

Beginning AppleScript (Programmer to Programmer) Beginning AppleScript (Programmer to Programmer)
Geared toward programmers with no prior development knowledge, Beginning AppleScript serves as a comprehensive guide to using AppleScript on the Mac OS X platform. This title introduces the reader to AppleScript, and then illustrates how to efficiently start writing scripts through sample programs as each concept is introduced.


Ballyhoo


Posted By

dbug13 on 06/10/07


Tagged

textmate applescript osx quicksilver


Versions (?)


Ping Google and display result in quicksilver


Published in: AppleScript 


I use this to test if my internet connection is up, I run it from quicksilver, it's much faster for me than opening up a terminal.


  1. set strData to do shell script "ping -c 3 google.com"
  2.  
  3. tell app "Quicksilver"
  4. show large type strData
  5. end tell

Report this snippet 

You need to login to post a comment.