Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-18 00:20:54 +00:00
parent 5e29c3e5bb
commit 83af6b3c72
22 changed files with 325 additions and 29 deletions

34
tldr/linux/toybox Normal file
View File

@@ -0,0 +1,34 @@
---
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`