Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 (applets):

`toybox`

- Display help information for a specific command:

`toybox {{command}} --help`

- Show version information:

`toybox --version`

- Run a Toybox command explicitly (useful if another command with the same name exists in PATH):

`toybox {{command}} {{arguments}}`

- Example: list files in the current directory using Toybox:

`toybox ls`

- Example: remove a file:

`toybox rm {{file}}`