I would like to use ls, and many other Linux tools, from the command line on Windows 10. I know that there is GnuWin32 and other binary replacements, but none of those works as elegantly as the Windows Subsystem for Linux (WSL); including the update mechanisms.
With WSL, one can call ls ... from the command line via bash -c "ls ...", which works great. Ideally, however, I would just type ls on the command line. I can create an ls.bat which basically does @bash -c "ls %*" - but I would have to do that for every single command I want to export. Is there a more direct way of exporting ls (and many others) to the command line?