将 shell 脚本转换为 Objective-C CLI

发布于 2024-08-05 21:29:59 字数 184 浏览 8 评论 0原文

我计划将相当长的 shell 脚本转换为 Objective C 命令行工具。我计划使用 NSTask 来运行 shell 命令(这是一个很大的脚本,它有数千个复制/移动/删除操作)。我的问题是,不断分配和取消分配 NSTask 对象来运行所有这些命令会导致性能大幅下降吗?

有没有比使用 NSTask 更好的方法?

谢谢

I am planning to convert a rather long shell script I have into an Objective C command line tool. I'm planning to use NSTask to run the shell commands (this is a large script, and it has several thousand copy/move/delete operations). My question is, will continually allocating and deallocating NSTask objects to run all these commands result in a large performance hit?

Is there a better way to do it than using NSTask?

Thanks

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

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

发布评论

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

评论(1

苏别ゝ 2024-08-12 21:29:59

如果您只是移动/复制/删除文件,您是否考虑过使用 NSFileManager

If you're just moving/copying/deleting files, have you considered using NSFileManager?

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