腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
视频
用户
沙龙
专栏
专区
综合排序
丨
最热优先
丨
最新优先
时间不限
Linux
coreutils
命令列表
用户2270320
2026-03-14
176
0
标签:
unix
linux
bash
cmd
shell
Linux From Scratch(LFS11.0)交叉编译临时工具 -
Coreutils
-8.32
Coreutils
软件包包含用于显示和设定系统基本属性的工具。 安装
Coreutils
解压软件包: echo $LFS cd $LFS/sources tar xf
coreutils
-8.32.tar.xz cd
coreutils
-8.32 配置
Coreutils
share/man/man8/chroot.8 sed -i 's/"1"/"8"/' $LFS/usr/share/man/man8/chroot.8 安装完成后清理工作: cd .. rm -rf
coreutils
Lucifer三思而后行
2021-10-08
524
0
标签:
编码
公众号
微软发布
Coreutils
for Windows:Linux 命令原生进入 Windows 11,开发者终于不用反复切换环境了
项目已经开源: 项目地址: Microsoft
Coreutils
GitHub 项目 为什么微软要做
Coreutils
?
Coreutils
是什么? 严格来说: GNU
Coreutils
本身并不是微软开发的。 它是 Linux 世界最基础的一组工具集合。 微软此次发布的并不是 GNU
Coreutils
本体,而是基于: uutils 项目 进行构建。 Rust 重写的 GNU
Coreutils
微软选择的技术路线很有意思。 特点: 开源 跨平台 安全性更高 与 GNU
Coreutils
高度兼容 微软在此基础上: 集成
Coreutils
集成 Findutils 集成 Grep 最终打包成一个 Windows 原生工具集 微软只提供:
coreutils
.exe 一个可执行文件。
井九
2026-06-04
223
0
标签:
脚本
开发
开发者
linux
windows
让Mac OS X的终端多姿多彩
不过,我推荐安装 Linux 使用的 GNU
Coreutils
替换 Mac 的 ls 命令,因为:
Coreutils
提供了配置工具,定义颜色代码更加方便;
Coreutils
包含的不仅仅是 ls
Coreutils
的安装与配置方法如下: 通过 Homebrew 安装
Coreutils
brew install xz
coreutils
注:
Coreutils
并不依赖于 xz,但它的源码是用 生成颜色定义文件 gdircolors --print-database > ~/.dir_colors 在~/.bash_profile配置文件中加入以下代码 if brew list | grep
coreutils
> /dev/null ; then PATH="$(brew --prefix
coreutils
)/libexec/gnubin:$PATH" alias ls='ls -F --show-control-chars
明哥的运维笔记
2019-01-30
1.9K
0
标签:
linux
ide
如何优雅的给 cp 和 mv 命令添加一个高颜值的进度条
由于 cp 和 mv 命令都是属于
coreutils
工具包下的,因此我们的主要操作就是在编译
coreutils
的时候加入补丁从而实现进度条功能。 # 注意尽量不要使用 root 用户操作 $ pwd /home/tinychen # 下载
coreutils
$ wget http://ftp.gnu.org/gnu/
coreutils
/
coreutils
-8.32.tar.xz $ tar -xJf
coreutils
-8.32.tar.xz $ cd
coreutils
-8.32/ # 下载 github 上的补丁 $ wget https://raw.githubusercontent.com
混说Linux
2022-11-18
1.8K
0
标签:
github
linux
开源
alias
编译
【转】Linux下显示cp/mv进度的两种方式
github上的advcpmv-0.9-9.1.patch 需要先编译带进度条功能的mv和cp命令 具体步骤如下代码语言:javascript复制wget http://ftp.gnu.org/gnu/
coreutils
/
coreutils
-9.1.tar.xztar -xJf
coreutils
-9.1.tar.xzcd
coreutils
-9.1上传advcpmv-0.9-9.1.patch文件patch -p1 /configuremake(图片可点击放大查看)(图片可点击放大查看)编译完成后拷贝生成的cp/mv命令代码语言:javascript复制/home/
coreutils
-9.1/srccp /home /
coreutils
-9.1/src/cp /usr/local/bin/cpgcp /home/
coreutils
-9.1/src/mv /usr/local/bin/mvg(图片可点击放大查看)显示进度条的具体用法代码语言
保持热爱奔赴山海
2024-12-27
2.4K
0
标签:
linux
微软把 ls、grep、cat 搬到了 Windows——这次不是闹着玩的
项目地址:https://github.com/microsoft/
coreutils
上周刷技术新闻,看到一条消息差点以为是恶搞:微软在 Build 2026 上正式发布了
Coreutils
for 他们选了 uutils/
coreutils
项目,这是一个社区用 Rust 从零重写 GNU
Coreutils
的开源项目,MIT 授权。 用 Rust 重写有几个好处: 1. 内存安全。
Coreutils
这种底层工具如果有内存漏洞那影响面太大了,Rust 天然规避了这类问题。 2. 跨平台设计。 现在
Coreutils
一装,Windows 直接具备了 Agent 执行所需的命令行基础设施。 现在直接一句 winget install Microsoft.
Coreutils
,完事。 4.
悠悠12138
2026-06-12
18
0
标签:
grep
windows
cat
ls
开发者
Linux 下大文件切割与合并
like 'l' but use round robin distribution r/K/N likewise but only output Kth of N to stdout GNU
coreutils
online help: <http://www.gnu.org/software/
coreutils
/> Full documentation at: <http://www.gnu.org/software /
coreutils
/split> or available locally via: info '(
coreutils
) split invocation' 文件合并 - cat 在 Linux 系统下使用 GNU
coreutils
online help: <http://www.gnu.org/software/
coreutils
/> Full documentation at: <http://www.gnu.org /software/
coreutils
/cat> or available locally via: info '(
coreutils
) cat invocation' end
互联网老辛
2021-07-14
4.2K
0
标签:
linux
javascript
Linux 下大文件切割与合并
like 'l' but use round robin distribution r/K/N likewise but only output Kth of N to stdout GNU
coreutils
online help: <http://www.gnu.org/software/
coreutils
/> Full documentation at: <http://www.gnu.org/software /
coreutils
/split> or available locally via: info '(
coreutils
) split invocation' 文件合并 - cat 在 Linux 系统下使用 GNU
coreutils
online help: <http://www.gnu.org/software/
coreutils
/> Full documentation at: <http://www.gnu.org /software/
coreutils
/cat> or available locally via: info '(
coreutils
) cat invocation'
民工哥
2021-07-16
4.2K
0
标签:
linux
javascript
如何在 Linux 下优雅的进行大文件切割与合并?
like 'l' but use round robin distribution r/K/N likewise but only output Kth of N to stdout GNU
coreutils
online help: <http://www.gnu.org/software/
coreutils
/> Full documentation at: <http://www.gnu.org/software /
coreutils
/split> or available locally via: info '(
coreutils
) split invocation' 2. GNU
coreutils
online help: <http://www.gnu.org/software/
coreutils
/> Full documentation at: <http://www.gnu.org /software/
coreutils
/cat> or available locally via: info '(
coreutils
) cat invocation'
杰哥的IT之旅
2021-07-13
1.5K
0
标签:
linux
javascript
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档