-
-
Save olekenneth/1f49995c53f5e1ae4ad9e774afff7ab7 to your computer and use it in GitHub Desktop.
How to export your org-mode and org-agenda to Apple Reminders
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 | |
| 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 |