Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-22 00:19:28 +00:00
parent f8f3aa8691
commit 8ba6f7fc9e
4 changed files with 50 additions and 2 deletions

22
tldr/coreutils Normal file
View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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: <https://uutils.github.io/coreutils/docs/multicall.html>.
- 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`