请教下列语法可以在 apple automate 执行, 但要储存成sh档案的时候会出现下列讯息, 语法错误, 要如何修正? 谢谢

1 个回答

3

jeffeux

iT邦新手 4 级 ‧ 2024-10-11 14:00:55

最佳解答

  1. AppleScript 不是 shell script
  2. 问 ChatGPT 应该就可以有自动给你案例的功能了

您甚至可以结合两者,请 ChatGPT 把这段翻译为 AppleScript

然后如果您是要用 .sh 档案,请直接用文字编辑器存档为例如 myscript.sh,然后 terminal 开起来输入

bash myscript.sh

就好。

以下是 ChatGPT 提供的 AppleScript 翻译


请帮我把这段 shell script 翻译为 AppleScript,我看了一下基本没问题,跟我学的 AppleScript 运作模式是一致的

find /Users/anderson/Downloads/downloadKdR7g194738/ -ctime +1d -mtime +1d -iname \'*.*\'

ChatGPT 说:
这段 Shell Script 的功能是查找在指定目录中创建和修改时间都超过一天的档案。下面是将其转换为 AppleScript 的範例:

set targetFolder to POSIX file "/Users/anderson/Downloads/downloadKdR7g194738/" as alias
set theFiles to {}

tell application "Finder"
    set fileList to every file of targetFolder
    repeat with aFile in fileList
        set fileCreationDate to (creation date of aFile)
        set fileModificationDate to (modification date of aFile)
        
        if (fileCreationDate < (current date) - (1 * days)) and (fileModificationDate < (current date) - (1 * days)) then
            set end of theFiles to (aFile as text)
        end if
    end repeat
end tell

return theFiles

这段 AppleScript 将遍历指定的资料夹,并收集创建和修改时间都超过一天的档案。你可以根据需要进行调整!