You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by eadmaster April 18, 2024
busybox has a--list switch to get the list of all supported commands, can the same be added to coreutils?
on windows i use it like this:
FOR /F %%C IN ('call "%~dp0busybox.bat" --list') DO (
IF [%TOOL%]==[%%C] (
call "%~dp0busybox.bat" %*
goto :eof
)
)
The text was updated successfully, but these errors were encountered:
Discussed in #6249
Originally posted by eadmaster April 18, 2024
busybox has a
--list
switch to get the list of all supported commands, can the same be added to coreutils?on windows i use it like this:
The text was updated successfully, but these errors were encountered: