将 shell 脚本转换为 Objective-C CLI
我计划将相当长的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只是移动/复制/删除文件,您是否考虑过使用
NSFileManager
?If you're just moving/copying/deleting files, have you considered using
NSFileManager
?