by sickn33
Windows 用户缺乏原生的 Unix 命令行工具。本技能提供了安装和使用 BusyBox 的完整指南,为 Windows 环境带来熟悉的 Unix 命令。
1. 打开 Claude 聊天界面
2. 点击下方 "📋 复制" 按钮
3. 粘贴到 Claude 聊天框中并发送
4. 输入 "使用 busybox-on-windows 技能" 开始使用
=== busybox-on-windows 技能 === 作者: sickn33 描述: Windows 用户缺乏原生的 Unix 命令行工具。本技能提供了安装和使用 BusyBox 的完整指南,为 Windows 环境带来熟悉的 Unix 命令。 使用方法: 1. 调用技能: "使用 busybox-on-windows 技能" 2. 提供相关信息: 根据技能要求提供必要参数 3. 查看结果: 技能会返回处理结果 示例: "使用 busybox-on-windows 技能,帮我分析一下这段代码"
这种方法适用于所有 Claude 用户,不需要安装额外工具。
devops
safe
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 busybox.exe file in the same directory as this document is.
These are PowerShell commands, if you have a classic cmd.exe terminal, then you must use powershell -Command "..." to run them.
Get-CimInstance -ClassName Win32_Processor | Select-Object Name, NumberOfCores, MaxClockSpeedGet-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" | Select-Object ProductName, DisplayVersion, CurrentBuild$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox.exe -OutFile busybox.exe$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64.exe -OutFile busybox.exe$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64u.exe -OutFile busybox.exe$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://frippery.org/files/busybox/busybox64a.exe -OutFile busybox.exeUseful commands:
busybox.exe --listbusybox.exe --listUsage: Prefix the UNIX command with busybox.exe, for example: busybox.exe ls -1
If you need to run a UNIX command under another CWD, then use the absolute path to busybox.exe.
Documentation: https://frippery.org/busybox/ Original BusyBox: https://busybox.net/
View Count
0
Download Count
0
Favorite Count
0
Quality Score
72