运行 Mac OS 命令行应用程序,如何

发布于 2024-11-25 16:07:01 字数 247 浏览 1 评论 0原文

假设您使用 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?

enter image description here

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 技术交流群。

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

发布评论

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

评论(1

所有深爱都是秘密 2024-12-02 16:07:01

这应该会有所帮助:

  1. 选择构建项目以进行存档(产品->构建
    用于->存档)。
  2. 可执行文件将被创建并放置在项目构建中
    文件夹。这通常是这样的
    /用户//库/开发人员/XCode/DerivedData//构建/产品/发布。
  3. 如果您愿意,请将可执行文件复制到更方便的位置。
  4. 要运行它,请打开 shell 窗口,浏览到可执行文件
    目录,然后输入您的命令名称。

编辑

我看到您在问题中提到了 iOS 并对其进行了标记。这个答案与 iOS 无关,事实上,我没有看到为该系统构建命令行应用程序的选项,并且拥有一个并没有多大意义。

This should help out:

  1. Choose to build your project for archiving (Product->Build
    For->Archiving).
  2. The executable will be created and placed in the project build
    folder. This will typically be something like
    /Users//Library/Developer/XCode/DerivedData//Build/Products/Release.
  3. If you wish, copy the executable to a more convenient location.
  4. To run it, open up a shell window, browse to the executable
    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.

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