“tee”的代码在哪里? 在 Mac 操作系统中?

发布于 2024-07-12 12:25:28 字数 1542 浏览 9 评论 0原文

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

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

发布评论

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

评论(5

药祭#氼 2024-07-19 12:25:29

你的意思是,可执行文件在哪里? 如果这就是您要问的,那么它位于 /usr/bin/tee 。 您可以使用 which 实用程序找到路径中的任何命令。 它将打印出命令的完整路径。 例如:

$ which tee
/usr/bin/tee
$

如果您询问实际的源代码,这里已经有许多答案,可以为您提供 Apple 源代码的链接。 这些实用程序本身分为多个包,并且没有真正的索引,因此您必须浏览名称并检查听起来可能包含任何给定实用程序的源代码的包。

Do you mean, where is the executable? If that's what you're asking, it's at /usr/bin/tee. You can locate any command in your path by using the which utility. It will print out the full path to the command. For example:

$ which tee
/usr/bin/tee
$

If you're asking about the actual source code, a number of answers are already here that provide you with links to Apple's source code. The utilities themselves are split amongst a number of packages and there's no real index, so you'll have to browse the names and check packages that sound like they might contain the source for any given utility.

末が日狂欢 2024-07-19 12:25:29

下面是Apple的unix的源代码:
http://developer.apple.com/Darwin/

如果是最新的是您的 Mac 使用的确切代码。

Here is the source code of Apple's unix:
http://developer.apple.com/Darwin/

If it is up-to-date this is the exact code that your mac uses.

剩一世无双 2024-07-19 12:25:28

我想你所说的“代码”是指源代码,对吗? 请参阅那里

编辑:我看到问题已经变得更加精确。

准确查看“普通”BSD 代码 这里因为需要Apple开发者登录(免费)才能浏览他们的代码。

By "code", I guess you mean source code, right? See there

EDIT: I see the question has been made more precise.

See exactly in the "plain" BSD code here as a Apple Developer login (free) is required to browse their code.

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