Skip to content

Instantly share code, notes, and snippets.

@pdxmph
Created September 4, 2012 20:35
Show Gist options
  • Save pdxmph/3626160 to your computer and use it in GitHub Desktop.
Save pdxmph/3626160 to your computer and use it in GitHub Desktop.
append Automator input to org-mode inbox
inbox = File.open("/Users/Mike/Dropbox/org/inbox.org", "a")
ARGF.each do |f|
task = f.split("|")
line = "\n\n* TODO #{task[0].strip}\n"
line << "DEADLINE: <#{task[1].strip}>\n" if task[1]
inbox << line
end
inbox.close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment