From ff38ddac7e9633f75d8fc78d4d32f8a1cdf4271c Mon Sep 17 00:00:00 2001 From: Sukh Mangat Date: Mon, 21 Apr 2025 18:45:42 -0400 Subject: [PATCH] coreutils: add page (#16170) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/common/coreutils.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/common/coreutils.md diff --git a/pages/common/coreutils.md b/pages/common/coreutils.md new file mode 100644 index 0000000000..1417201b2a --- /dev/null +++ b/pages/common/coreutils.md @@ -0,0 +1,17 @@ +# coreutils + +> Uutils coreutils is a cross-platform reimplementation of the GNU coreutils in Rust Language. +> Uutils includes a multi-call binary from which the utils can be invoked. This reduces the binary size of the binary and can be useful for portability. +> More information: . + +- Run a utility with arguments: + +`coreutils {{util}} {{util_options}}` + +- List files in [l]ong format: + +`coreutils ls -l` + +- Display help for `ls`: + +`coreutils ls --help`