首页
学习
活动
专区
圈层
工具
发布
综合排序最热优先最新优先
时间不限
Linux coreutils 命令列表
用户2270320
2026-03-14
1760
标签:
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
5240
标签:
微软发布 Coreutils for Windows:Linux 命令原生进入 Windows 11,开发者终于不用反复切换环境了
项目已经开源: 项目地址: Microsoft Coreutils GitHub 项目 为什么微软要做 CoreutilsCoreutils 是什么? 严格来说: GNU Coreutils 本身并不是微软开发的。 它是 Linux 世界最基础的一组工具集合。 微软此次发布的并不是 GNU Coreutils 本体,而是基于: uutils 项目 进行构建。 Rust 重写的 GNU Coreutils 微软选择的技术路线很有意思。 特点: 开源 跨平台 安全性更高 与 GNU Coreutils 高度兼容 微软在此基础上: 集成 Coreutils 集成 Findutils 集成 Grep 最终打包成一个 Windows 原生工具集 微软只提供: coreutils.exe 一个可执行文件。
井九
2026-06-04
2230
标签:
让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.9K0
标签:
如何优雅的给 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.8K0
标签:
【转】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.4K0
标签:
微软把 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
180
标签:
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.2K0
标签:
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.2K0
标签:
如何在 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.5K0
标签:
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档