在 AppleScript 中逐行迭代文件?
我试图弄清楚如何在 AppleScript 中逐行迭代文件。类似于 bash 脚本,如下所示:
for LINE in $(cat file)
do
echo ${LINE}
done
有什么提示吗?谢谢!
I am trying to figure out how to iterate through a file line by line in AppleScript. Similar to a bash script like so:
for LINE in $(cat file)
do
echo ${LINE}
done
Any tips? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不能因为写这篇文章而获得荣誉,我从 对 MacRumors 论坛中的帖子的回复。
原始代码归功于 MacRumors 论坛上的 HexMonkey。
I can't take credit for writing this, I lifted the code from a response to a post in the MacRumors forums.
Original code credit to HexMonkey on the MacRumors forum.