Skip to content

Instantly share code, notes, and snippets.

@shrysr
Forked from olekenneth/README.md
Created December 27, 2025 19:01
Show Gist options
  • Select an option

  • Save shrysr/148f809e08e31e4311215c290cc82473 to your computer and use it in GitHub Desktop.

Select an option

Save shrysr/148f809e08e31e4311215c290cc82473 to your computer and use it in GitHub Desktop.
How to export your org-mode and org-agenda to Apple Reminders
#!/bin/bash
perl -0777 -nE 'while(/\*{2,3} TODO (.+)\n.*?SCHEDULED: <(\d{4}-\d{2}-\d{2})/g){($t,$d)=($1,$2);$t=~s/ +:[^:]*:$//;$t=~s/"/\\"/g;push @a,qq({"date":"$d","task":"$t"})}say q({"data":[).join(",",@a).q(]})' ~/.notes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment