From f00e974da355acfd2b31197883e34ef215dbf0fe Mon Sep 17 00:00:00 2001 From: MohammedTharikS Date: Mon, 17 Nov 2025 11:11:06 +0530 Subject: [PATCH] toybox: add page (#19346) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/toybox.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/linux/toybox.md diff --git a/pages/linux/toybox.md b/pages/linux/toybox.md new file mode 100644 index 0000000000..6597b6c297 --- /dev/null +++ b/pages/linux/toybox.md @@ -0,0 +1,29 @@ +# toybox + +> Multipurpose tool that provides many standard Unix utilities. +> Commonly used in Android and embedded Linux systems. +> More information: . + +- 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`