busybox-on-windows
Original:🇺🇸 English
Translated
How to use a Win32 build of BusyBox to run many of the standard UNIX command line tools on Windows.
5installs
Added on
NPX Install
npx skill4agent add davila7/claude-code-templates busybox-on-windowsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →BusyBox is a single binary that implements many common Unix tools.
Use this skill only on Windows. If you are on UNIX, then stop here.
Run the following steps only if you cannot find a file in the same directory as this document is.
These are PowerShell commands, if you have a classic terminal, then you must use to run them.
busybox.execmd.exepowershell -Command "..."- Print the type of CPU:
Get-CimInstance -ClassName Win32_Processor | Select-Object Name, NumberOfCores, MaxClockSpeed - Print the OS versions:
Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" | Select-Object ProductName, DisplayVersion, CurrentBuild - Download a suitable build of BusyBox by running one of these PowerShell commands:
- 32-bit x86 (ANSI):
$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox.exe -OutFile busybox.exe - 64-bit x86 (ANSI):
$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64.exe -OutFile busybox.exe - 64-bit x86 (Unicode):
$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64u.exe -OutFile busybox.exe - 64-bit ARM (Unicode):
$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64a.exe -OutFile busybox.exe
- 32-bit x86 (ANSI):
Useful commands:
- Help:
busybox.exe --list - Available UNIX commands:
busybox.exe --list
Usage: Prefix the UNIX command with , for example:
busybox.exebusybox.exe ls -1If you need to run a UNIX command under another CWD, then use the absolute path to .
busybox.exeDocumentation: https://frippery.org/busybox/
Original BusyBox: https://busybox.net/