通过RubyCocoa调用外部shell应用程序
我如何通过 RubyCocoa 桥调用外部应用程序?我读过一些关于 NSTask 的内容,但我不知道如何在 RubyCocoa 中翻译它。我的目标是有一个 IB_action 来触发一个方法,该方法将运行带有一些参数的终端应用程序,即 ls -p $mydir
,其中 mydir 来自 IB_outlet 例如文本字段。任何指示或帮助将不胜感激!
How would I invoke an external application through the RubyCocoa bridge? I read something about NSTask, yet I have no idea how this should be translated in RubyCocoa. My goal is to have an IB_action to trigger a method which will run a terminal application with some parameters, i.e. ls -p $mydir
, where mydir comes from an IB_outlet such as an Textfield. Any directions or help would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常使用`引号和变量的#{}结构来调用
Usually it is invoked using ` quotes and #{} structure for variable