运行 Mac OS 命令行应用程序,如何
假设您使用 Xcode
创建一个新的 Mac OS 命令行应用程序
,它会打印一些内容。如何使用命令行或 Finder 实际找到并运行它?
应用程序已“built
”,但项目目录结构似乎不包含一个可执行文件。该文件的格式是什么?
请指教
Suppose you create a new Mac OS Command Line Application
using Xcode
, which prints something. How do you actually find and run it using your command line or Finder?
Application was "built
", but project directory structure does not seem to contain an executable file. For what matter in what format will this file be?
Please advise
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该会有所帮助:
用于->存档)。
文件夹。这通常是这样的
/用户//库/开发人员/XCode/DerivedData//构建/产品/发布。
目录,然后输入您的命令名称。
编辑
我看到您在问题中提到了 iOS 并对其进行了标记。这个答案与 iOS 无关,事实上,我没有看到为该系统构建命令行应用程序的选项,并且拥有一个并没有多大意义。
This should help out:
For->Archiving).
folder. This will typically be something like
/Users//Library/Developer/XCode/DerivedData//Build/Products/Release.
directory, and type in your command name.
EDIT
I see you mentioned iOS in your question and tagged it as such. This answer is NOT relevant to iOS, infact I see no option to build a command line application for that system and it doesn't really make much sense to have one.