有关命令的源代码

发布于 2024-11-03 05:01:21 字数 122 浏览 1 评论 0原文

我在哪里可以找到有关 unix 命令(ls、sleep、cd 等)的源文件(C 语言)。

我已经下载了内核linux-2.6.39-rc3,但是没有关于linux命令的源代码。

感谢您的帮助 :-)

where can I found source files (in C language) about unix Commands (ls, sleep, cd etc).

I've downloaded the kernel linux-2.6.39-rc3, but there are no source about linux command.

thanks for your help :-)

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

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

发布评论

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

评论(4

寂寞花火° 2024-11-10 05:01:21

大多数通用 Linux 命令来自 coreutils http://www.gnu。 org/software/coreutils/ 那里可能缺少一些内容,但是您具体询问的所有内容都应该在 coreutils 源代码中找到。

内核源代码中不包含任何用户态程序。

Most of the generic Linux commands come from coreutils http://www.gnu.org/software/coreutils/ there might be some missing there, but everything you asked specifically about should be found in coreutils source.

the kernel source doesn't contain any userland programs in it.

温折酒 2024-11-10 05:01:21

如果您使用基于 debian 的操作系统,那么您可以使用

dpkg -S command

查找它所在的包,然后

apt-get source package 

下载源代码。您可以在其他机器上找到类似的命令。

If you are using debian based os then u can use

dpkg -S command

to find the package it is present in and then

apt-get source package 

to download the source. You can find similar commands on other machines.

白馒头 2024-11-10 05:01:21

Pickup the GNU coreutils @ http://ftp.gnu.org/pub/gnu/coreutils/ and this includes a lot of these commands.

我要还你自由 2024-11-10 05:01:21

用于

sudo apt-get build-dep core-utils
apt-get source core-utils --compile

从头开始并编译 core-utils 中的所有内容

use

sudo apt-get build-dep core-utils
apt-get source core-utils --compile

to get and compile everything in core-utils from scratch

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