gpt4 book ai didi

applescript - 在 AppleScript 中逐行遍历文件?

转载 作者:行者123 更新时间:2023-12-04 11:16:28 24 4
gpt4 key购买 nike

我想弄清楚如何在 AppleScript 中逐行遍历文件。类似于这样的 bash 脚本:

for LINE in $(cat file)
do
echo ${LINE}
done

有小费吗?谢谢!

最佳答案

我不能因为写这篇文章而受到赞扬,我从 response to a post 中提取了代码在 MacRumors 论坛中。

tell application "Finder"
set Names to paragraphs of (read (choose file with prompt "Pick text file containing track names"))
repeat with nextLine in Names
if length of nextLine is greater than 0 then
--Do something with the next name, which is stored in "nextLine"
end if
end repeat
end tell

原始代码归功于 HexMonkey在 MacRumors 论坛上。

关于applescript - 在 AppleScript 中逐行遍历文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3305966/

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