mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
docs: add multi-call binary
This commit is contained in:
parent
5ff4796b12
commit
83d5d1558e
3 changed files with 21 additions and 1 deletions
|
@ -3,6 +3,9 @@
|
|||
[Introduction](index.md)
|
||||
* [Installation](installation.md)
|
||||
* [Contributing](contributing.md)
|
||||
|
||||
# Reference
|
||||
* [Multi-call binary](multicall.md)
|
||||
* [Utils](utils/index.md)
|
||||
* [arch](utils/arch.md)
|
||||
* [base32](utils/base32.md)
|
||||
|
|
|
@ -6,7 +6,7 @@ Linux, Windows, Mac and other platforms.
|
|||
|
||||
The API reference for `uucore`, the library of functions shared between
|
||||
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).
|
||||
|
||||
|
|
17
docs/src/multicall.md
Normal file
17
docs/src/multicall.md
Normal 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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue