This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DEFAULT_ALARM='current date' | |
alarm=$DEFAULT_ALARM | |
foo=`osascript <<EOF | |
tell application "iCal" | |
set newtodo to (make new todo at end of todos of calendar "Home") | |
tell newtodo | |
set summary to "Bills" | |
set due date to ($alarm) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
#################################### | |
# iTunes Command Line Control v1.0 | |
# originally written by David Schlosnagle | |
# created 2001.11.08 | |
# edit 2010.06.01 rahul kumar | |
# edit 2011.12.11 Riccardo Carlesso | |
#################################### |