added README and script directory
This commit is contained in:
parent
13a73f701f
commit
4c84321ff4
2 changed files with 17 additions and 0 deletions
12
README.md
Normal file
12
README.md
Normal file
|
@ -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.
|
||||
|
5
scripts/explorer.sh
Executable file
5
scripts/explorer.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
# launch explorer with converted path(s)
|
||||
'/mnt/c/Windows/explorer.exe' `path-convert $@`
|
||||
|
Loading…
Reference in a new issue