busybox-w32
busybox-w32 copied to clipboard
WIN32 native port of BusyBox.
``` chown -R `whoami` C:/some/path ``` is equivalent to ``` icacls C:/some/path /setowner "$USERNAME" /t ``` for adding permissions ``` chmod -R u+rwx C:/some/path ``` is equivalent to ``` OWNER=$(powershell...
this snippet of powershell correctly enables the current user to create symlinks (`ln -s`) ``` $exportPath = "$env:TEMP\secpol.cfg" $importPath = "$env:TEMP\secpol_modified.cfg" $dbPath = "$env:TEMP\secpol.sdb" secedit /export /cfg "$exportPath" (Get-Content $exportPath)...
with an administrative shell ``` pip install yt-dlp ``` Then, once you have this reliable way to write cursed filenames to a folder: ``` yt-dlp https://twitter.com/Nike/status/1582388225049780230 ls ``` Observe errors....
Hi, FRP-1035(1.27) is able to input CJK in cmd.exe of win7, but FRP-3128(1.31) and newer versions not. so, what changed?
Some tools, notably `cmd.exe` commands, have issues with forward slashes in values. e.g. consider the resulting batch file here: ```sh printf %s\\n 'mkdir %APPDATA%\foo' > test.bat ./test.bat C:\test>mkdir C:/Users//AppData/Roaming\foo The...
Paste bug
On notepad I digit a `q` letter and a tabulation, I copy it and then paste it inside the shell. Instead of pasting the letter and the tabulation it paste...
Quote from a message at https://bugs.busybox.net/show_bug.cgi?id=15466: ``` POSIX will be standardizing realpath in Issue 8: https://www.austingroupbugs.net/view.php?id=1457 As such, the standard requirements that all utilities not explicitly excluded (basically, echo is...
``` configure: error: no acceptable C compiler found in $PATH See `config.log' for more details ``` It also fails to check for various utilities like sed,... even though they are...
Currently: ``` uname -m = x86_64 uname -r = 6.3 uname -s = Windows_NT uname -v = 9600 ``` On msys2's mingw64 environment: ``` uname -m = x86_64 uname -r...
The following show that `dd ... > /dev/null` is reasonably fast, and that decoding using `base64` to a file or pipe into `md5sum` are also reasonably fast, and `cat` of...