5 lines
192 B
Bash
Executable File
5 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
# we're using precompiled busybox i486 binary, which runs on 64bit systems as well!
|
|
wget -O ./busybox http://busybox.net/downloads/binaries/latest/busybox-i486
|
|
chmod a+x ./busybox
|