diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b29690 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ + +# Winure: WSL inurement tools + +These are tools I use to use Windows primarily through WSL. + +## `path-convert` + +A Linux utility to canonicalize and convert paths from Unix to DOS, which makes +it easier to open programs like explorer from WSL. This solves hiccups from +paths like missing support for symbolic links, mismatched path separators, and +resolves C-drive paths to their normal DOS forms. + diff --git a/scripts/explorer.sh b/scripts/explorer.sh new file mode 100755 index 0000000..e9bdba2 --- /dev/null +++ b/scripts/explorer.sh @@ -0,0 +1,5 @@ +#!/usr/bin/bash + +# launch explorer with converted path(s) +'/mnt/c/Windows/explorer.exe' `path-convert $@` +