Skip to content
29 changes: 29 additions & 0 deletions pages/linux/toybox.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# toybox

> Multipurpose command-line 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 using Toybox:

`toybox ls`

- Remove a file:

`toybox rm {{path/to/file}}`

- Display help information for a specific command:

`toybox {{command}} --help`

- Show version information:

`toybox --version`