回答:
osascript - title <<END
on run a
tell app "Reminders"
tell list "Reminders" of default account
make new reminder with properties {name:item 1 of a}
end
end
end
END
また、空の[新しいアラームアイテム]アクションのみでAutomatorワークフローを作成し、で実行することもできますautomator -i title test.workflow
。
Mac OS Xヒントのこの投稿も参照してください。
#!/usr/bin/env bash
最初の行として追加して実行するchmod +x /path/to/script
か、実行しbash /path/to/script.sh
ます。または、最初と最後の行を削除して、AppleScript Editorを保存します。
コマンドライン引数を使用してタイトル、終了日時を設定できる別のバージョンがあります。
#!/usr/bin/env bash
# Make a new reminder via terminal script
# args: remind <title> <date> <time>
osascript - "$1" "$2" "$3" <<END
on run argv
set stringedAll to date (item 2 of argv & " " & item 3 of argv)
tell application "Reminders"
make new reminder with properties {name:item 1 of argv, due date:stringedAll}
end tell
end run
END
したがって、このスクリプトに「リマインド」という名前を付けて実行権限を付与する場合(chmod 755リマインド)、次のようにできます。
$ ./remind "Go to grocery store" 12/15/2013 10:00:00PM
tell application "Reminders"
activate
show list "Reminders"
end tell
set stringedDate to "12/11/2015"
set stringedHour to "10:00:00PM"
set stringedAll to date (stringedDate & " " & stringedHour)
tell application "Reminders" to tell list "Reminders" of default account to make new reminder with properties {name:"this is just test remainder", remind me date:stringedAll, due date:stringedAll, priority:1}
上記のAppleScriptと同じ機能があります。ただし、ESXを使用するJXAでは。
#!/usr/bin/env osascript -l JavaScript
const RemindersApp = Application('Reminders');
function run(argv) {
[name, date, time] = argv;
dueDate = new Date(date + " " + time);
reminder = RemindersApp.Reminder({name: name, dueDate: dueDate});
RemindersApp.defaultList.reminders.push(reminder);
}
このgithubプロジェクトは素晴らしい動作をし、AppleScriptを使用しません。コンパイル済みのXCodeアプリです。