View Single Post
  #5  
Old 10-16-2011, 06:35 AM
cookieme cookieme is offline
Registered User
 
Join Date: Nov 2009
Posts: 28
No worries. Thanks for your help.

I created the following little script:

Quote:
#!/bin/sh
#
# Shell script creates an iCal event using AppleScript.
#
osascript <<EOF
tell application "iCal"
tell calendar "SD Backup"
set theDate to current date
set theTime to time string of theDate
make new event at end with properties {summary:"SD Daily", start date:theDate, allday event:true, description:"Completed at " & theTime}
end tell
end tell
EOF
Reply With Quote