gpt4 book ai didi

applescript - 如何在 Applescript 中回显值/变量?

转载 作者:行者123 更新时间:2023-12-02 20:26:03 24 4
gpt4 key购买 nike

免责声明:我对此很陌生。

我有一个使用 count 命令检索到的数字,现在我想使用“do shell script echo”将其输出到 .txt 文件。

到目前为止我的代码:

tell application "Things3"
set todayToDos to to dos of list "Today"
count todayToDos
do shell script "echo todayToDos > /Users/nonefirstnonelast/Desktop/Things.txt"
end tell

控制台输出为:

""
without do shell script "echo todayToDos > /Users/nonefirstnonelast/Desktop/Things.txt" line it is: 27

最佳答案

您必须将 count 行的结果分配给一个变量。然后,您必须将整数强制转换为文本,并将变量的值插入到 shell 脚本行中。

tell application "Things3"
set todayToDos to to dos of list "Today"
set numberOfTodos to count todayToDos
end tell
do shell script "echo " & (numberOfTodos as text) & " > /Users/nonefirstnonelast/Desktop/Things.txt"

关于applescript - 如何在 Applescript 中回显值/变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49888301/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com