busybox-w32 icon indicating copy to clipboard operation
busybox-w32 copied to clipboard

WIN32 native port of BusyBox.

Results 84 busybox-w32 issues
Sort by recently updated
recently updated
newest added

I'm using the latest 32-bit busybox prerelease. When executing `cut 2>&1 --wrong-opt` the first line is: ``` cut: unknown option -- wrong-opt ``` Instead when using this: ``` cut_output="$(cut 2>&1...

It would be nice to have `kill -0` working even if `process_architecture_matches_current` fails. Currently it say: `can't kill pid 20808: Permission denied` `kill -0` doesn't send any signal, isn't possible...

``` my_func() { #return 0 #return 5 sleep 60 } my_func_timeout() { local _sec_limit _pid _sec_limit=3 my_func & _pid="${!}" while test "$((_sec_limit = _sec_limit - 1))" -ge 0; do sleep...

This is correctly rejected: `echo 123 | cut -b '3-1'; echo $?` but this is currently allowed: `echo 123 | cut -b '3-2'; echo $?` Why is that? cut included...

would be a useful addition to have bash shopt included

Trying to use exec to replace a not-interactive process with an interactive one doesn't work inside su. Example: `busybox su -c 'exec sh -s -c "echo 123"'` It should remain...

``` $ busybox ash $ export PATH='C:/Program Files/Git/usr/bin' $ command -v which which $ which -a start $ command -v start C:/Program Files/Git/usr/bin/start ``` I haven't figured out why `which`...

`cut -s` doesn't remove blank lines, but I think it should. Example: `wmic.exe cpu get DataWidth /VALUE | tr -d '\r' | cut -d '=' -f '2-' -s` **Edit:** With...

This is what I get with 32-bit BusyBox: ``` $ stat 'C:/Windows/System32/OpenSSH/ssh.exe' stat: can't stat 'C:/Windows/System32/OpenSSH/ssh.exe': No such file or directory ``` Can it be fixed please? **PS:** The file...

Bash online: ``` $ TZ='UTC' date Thu Sep 19 03:18:14 AM UTC 2024 $ TZ='Europe/Rome' date Thu Sep 19 05:18:14 AM CEST 2024 $ TZ='CET' date Thu Sep 19 05:18:14...