1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

docs: add multi-call binary

This commit is contained in:
Terts Diepraam 2022-01-20 23:21:02 +01:00
parent 5ff4796b12
commit 83d5d1558e
3 changed files with 21 additions and 1 deletions

View file

@ -3,6 +3,9 @@
[Introduction](index.md) [Introduction](index.md)
* [Installation](installation.md) * [Installation](installation.md)
* [Contributing](contributing.md) * [Contributing](contributing.md)
# Reference
* [Multi-call binary](multicall.md)
* [Utils](utils/index.md) * [Utils](utils/index.md)
* [arch](utils/arch.md) * [arch](utils/arch.md)
* [base32](utils/base32.md) * [base32](utils/base32.md)

View file

@ -6,7 +6,7 @@ Linux, Windows, Mac and other platforms.
The API reference for `uucore`, the library of functions shared between The API reference for `uucore`, the library of functions shared between
various utils, is hosted at at various utils, is hosted at at
[docs.rs](https://docs.rs/uucore/0.0.10/uucore/). [docs.rs](https://docs.rs/uucore/0.0.12/uucore/).
uutils is licensed under the [MIT License](https://github.com/uutils/coreutils/LICENSE.md). uutils is licensed under the [MIT License](https://github.com/uutils/coreutils/LICENSE.md).

17
docs/src/multicall.md Normal file
View file

@ -0,0 +1,17 @@
# Multi-call binary
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.
The first argument of the multi-call binary is the util to run, after which
the regular arguments to the util can be passed.
```shell
coreutils [util] [util options]
```
The `--help` flag will print a list of available utils.
## Example
```
coreutils ls -l
```