HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

busybox — A collection of small system utilities in a single executable. Executing `busybox` via a symlink is

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandutilitiesbusyboxcollectionsingleclismallsystem

Problem

How to use the busybox command: 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>.

Solution

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>.

Execute a BusyBox function:
busybox {{ls|rm|mkdir|cat|...}} {{args}}


Display help and a list of functions:
busybox --help

Code Snippets

Execute a BusyBox function

busybox {{ls|rm|mkdir|cat|...}} {{args}}

Display help and a list of functions

busybox --help

Context

tldr-pages: common/busybox

Revisions (0)

No revisions yet.