IS_WSL_PATH detect a WSL path
Ref: https://learn.microsoft.com/en-us/windows/wsl/filesystems
function iswsl = is_wsl_path(path) arguments path (1,1) string {mustBeNonzeroLengthText} end if ispc iswsl = any(startsWith(path, ["\\wsl$", "\\wsl.localhost"])); else iswsl = false; end end