mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 08:43:23 +00:00
35 lines
680 B
Plaintext
35 lines
680 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# toybox
|
|
|
|
> Multipurpose tool that provides many standard Unix utilities.
|
|
> Commonly used in Android and embedded Linux systems.
|
|
> More information: <https://landley.net/toybox/>.
|
|
|
|
- List all available Toybox commands:
|
|
|
|
`toybox`
|
|
|
|
- Run a Toybox command explicitly (useful if another command with the same name exists in `$PATH`):
|
|
|
|
`toybox {{command}} {{arguments}}`
|
|
|
|
- List files in the current directory:
|
|
|
|
`toybox ls`
|
|
|
|
- Remove a file:
|
|
|
|
`toybox rm {{path/to/file}}`
|
|
|
|
- Display help information for a specific command:
|
|
|
|
`toybox {{command}} --help`
|
|
|
|
- Display version:
|
|
|
|
`toybox --version`
|