mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 14:43:35 +00:00
20 lines
545 B
Plaintext
20 lines
545 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# busybox
|
|
|
|
> A collection of small system utilities in a single executable.
|
|
> Executing `busybox` via a symlink is equivalent to running `busybox symlink_name`.
|
|
> Linux distributions that use BusyBox will usually provide symlinks for all programs.
|
|
> More information: <https://www.busybox.net/downloads/BusyBox.html>.
|
|
|
|
- Execute a BusyBox function:
|
|
|
|
`busybox {{ls|rm|mkdir|cat|...}} {{args}}`
|
|
|
|
- Display help and a list of functions:
|
|
|
|
`busybox --help`
|