From 4c84321ff499fe302be3e4c120a10679ba279584 Mon Sep 17 00:00:00 2001 From: Valerie Wolfe Date: Wed, 5 Jun 2024 09:22:27 -0400 Subject: [PATCH] added README and script directory --- README.md | 12 ++++++++++++ scripts/explorer.sh | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 README.md create mode 100755 scripts/explorer.sh 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 $@` +