通过终端编程 (Mac)

发布于 2024-10-29 06:49:10 字数 74 浏览 0 评论 0原文

我一直在使用 Textmate 编写 C 源代码,但想通过终端完成所有操作。

如何通过终端进行编程?还需要安装什么吗?

I have been using Textmate for writing my C source but want to do everything via the terminal.

How does one program via the terminal? Is anything else needed, installed?

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

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

发布评论

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

评论(3

ヅ她的身影、若隐若现 2024-11-05 06:49:10

为了在终端上编写源代码,您当然需要一个可在终端上运行的编辑器。在 OS X 中,您有很多选项可供选择。如果您想要简单易用的编辑器,您可能需要尝试 OS X 上提供的 nanopico。如果您开始想要一点或更多功能的文本编辑器,那么您可能想尝试像 vimemacs 这样的编辑器,它们在 OS X 下也可用。

为了编译您的 C 源,您将需要一个 C 编译器。虽然默认情况下,OS X 并未预装 C 编译器,但您可以快速安装大量开发工具,这些工具可在您购买时获得的 OS X 安装光盘中找到。买了你的Mac。这些工具将为您提供 gcc(这是 GNU C 编译器,您可以在终端上使用它来编译您的 C 源代码)、gdb -- 这是 GNU 调试器,您可以进一步使用它来调试编译的 C 源代码 --, make -- 这是 GNU make,一个程序,当您开始必须管理许多 C 源文件,这些文件可以通过创建 make 文件和自动化构建操作来帮助您,以及随着您花更多时间您可能想要探索的许多其他工具并熟悉该系统。

In order to write source code on the Terminal, you will of course need an editor that works on the Terminal. In OS X, you have a lot of options to choose from. If you want simple and easy to use editors, you may want to try nano and pico that are available on OS X. If you start to want a little or more functionality out of the text editor, then you may want to try editors like vim and emacs, which are also available under OS X.

In order to compile your C source, you will require a C compiler. While OS X does not, by default, come pre-installed with a C compiler, you can quickly install a slew of development tools that are available in the OS X installation discs that you may have got when you bought your Mac. Those tools will provide you with gcc -- which is the GNU C compiler that you can use on the Terminal to compile your C sources --, gdb -- which is the GNU Debugger that you can further use to debug your compiled C source --, make -- which is GNU make, a program that, when you start to have to manage a number of C source files, can help you by creating make files and automating build operations -- and a number of other tools that you may want to explore as you spend more time with the system and become familiar with it.

天涯离梦残月幽梦 2024-11-05 06:49:10

您可以使用 emacsvivi 默认包含在 osx 中。

You can use emacs or vi. vi is included in osx by default.

醉生梦死 2024-11-05 06:49:10

您可以使用终端文本编辑器,例如 vim 或 emacs。您可能还需要安装 gcc。
所有这些程序都可以通过任何端口系统获得。

You can use a terminal text editor such as vim or emacs. You may also need to install gcc.
All these programs are available through any ports system.

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