Created
May 28, 2014 20:30
-
-
Save sr/65e85b7309cdc9cba0fe to your computer and use it in GitHub Desktop.
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
#!/usr/bin/osascript | |
# Usage: omnifocus-inbox Do something @Work | |
on run argv | |
set AppleScript's text item delimiters to " " | |
set theText to argv as string | |
tell application "OmniFocus" | |
parse tasks into default document with transport text theText | |
end tell | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment