使用 applescript 或终端从 ical 获取事件摘要和当前状态?

发布于 2024-10-07 06:47:48 字数 270 浏览 5 评论 0原文

我正在尝试查询 iCal 以查明特定日历中的事件现在是否正在发生,如果是,则该事件的名称是什么 - 使用 applescript 或终端(我真的不太了解) 。我看到了一个类似的问题,关于使用 applescript 检索当天所有事件的摘要,但这并不是我正在寻找的。 (Applescript 和 iCal 交互)。

有什么想法吗?

I'm trying to query iCal to find out if an event in a specific calendar is occurring now, and if so, what the name of the event is—using either applescript or the terminal (I really don't know much about either). I saw a similar question about using applescript to retrieve the summary of all of the events of the current day, but that's not exactly what i'm looking for. (Applescript and iCal interaction).

any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热情消退 2024-10-14 06:47:48

使用 过滤表单

tell application "iCal"
    get every event of calendar cal ¬
        where (start date ≤ (current date)) and (end date > (current date))
end tell

请注意,开始日期结束日期必须早于(当前日期),否则您会得到一个错误。

Use a filter form:

tell application "iCal"
    get every event of calendar cal ¬
        where (start date ≤ (current date)) and (end date > (current date))
end tell

Note that start date and end date must come before (current date), otherwise you'll get an error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文