Skip to content

Instantly share code, notes, and snippets.

@hashchange
Last active May 10, 2022 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hashchange/f4cd619def08def6e90704e9905ce3d0 to your computer and use it in GitHub Desktop.
Save hashchange/f4cd619def08def6e90704e9905ce3d0 to your computer and use it in GitHub Desktop.
Safely converts a WSL (Linux) path to a Windows path. Does not suffer from the limitations of `wslpath -w`.
#!/usr/bin/env bash
# Script name
PROGNAME="$(basename "$BASH_SOURCE")"
if [[ "$1" == '--version' || "$1" == '-v' ]]; then
fmt -s <<- VERSION_TEXT
$PROGNAME 1.1.2
(c) 2022 Michael Heim
License: MIT
VERSION_TEXT
exit 0
elif [[ "$1" == '--help' || "$1" == '-h' ]]; then
fmt -s <<- HELP_TEXT
Safely converts a WSL (Linux) path to a Windows path.
If a path argument is not provided, input is read from standard input instead (so the command can be used in a pipe).
Converts a path if it points to a location in the Windows file system (/mnt/[drive letter]). If the path is WSL-specific, ie within the Linux file system, it is returned unchanged by default. To force conversion to a UNC path (\\\\wsl$\\Ubuntu\\...), use the -f flag.
A Windows path (e.g. C:\\Users\\foo) is returned unchanged. However, accidental forward slashes in the path are corrected to backslashes. The -f option converts a relative path into an absolute path. The -e option (escape backslashes) is honoured as well.
The conversion is entirely string-based, the path does not have to exist.
During conversion from Linux to Windows format, trailing backslashes are removed. They are also removed during conversion from a relative to an absolute path (-f option). Trailing slashes in unconverted Linux or Windows paths are returned as they are passed in, never added or removed.
Usage:
$PROGNAME [options] path
... | $PROGNAME [options]
Options:
-e Escape backslashes.
-f Convert Linux-specific paths to UNC paths, and relative
paths to absolute paths.
-v, --version Show version and license.
-h, --help Show help.
Conversion examples:
/mnt/d/Foo/Bar Baz/.quux/file.txt => D:\\Foo\\Bar Baz\\.quux\\file.txt
/mnt/d/Foo/Bar Baz/.quux/ => D:\\Foo\\Bar Baz\\.quux
/mnt/d/Foo/Bar Baz/.quux => D:\\Foo\\Bar Baz\\.quux
/usr/local/bin/ => /usr/local/bin/
/usr/local/bin/command.sh => /usr/local/bin/command.sh
~ => /home/[user] (*)
./bar (assuming cwd /home/m/foo) => ./bar
./bar (assuming cwd /mnt/d/Foo) => D:\\Foo\\bar
(*) as a result of shell expansion
With the -f flag:
~ => \\\\wsl$\\Ubuntu\\home\\[user]
/usr/local/bin/ => \\\\wsl$\\Ubuntu\\usr\\local\\bin
/usr/local/bin/command.sh => \\\\wsl$\\Ubuntu\\usr\\local\\bin\\command.sh
./bar (assuming cwd /home/m/foo) => \\\\wsl$\\Ubuntu\\home\\m\\foo\\bar
./bar (assuming cwd /mnt/d/Foo) => D:\\Foo\\bar
$PROGNAME differs from the built-in wslpath utility in several respects:
- \`wslpath -w\` throws an error if the input path does not exist.
- \`wslpath -w\` always converts WSL-specific paths to UNC paths.
- \`wslpath -w\` throws an error if the input path is in Windows format.
Limitations:
Input paths do not have to exist, but they are expected to be valid paths and do not pass an additional sanity check. Invalid paths may lead to unexpected output, rather than an error.
HELP_TEXT
exit 0
fi
fatal_error() { echo "$PROGNAME: $1" >&2; exit 1; }
# Checks if a path is absolute and in Windows format. Ie, it begins with
# [Drive letter]:\ or \\[UNC host name].
is_abs_path_in_windows_format() { [[ "$1" =~ ^[a-zA-Z]:(\\|$)|^\\\\[a-zA-Z] ]]; }
# Checks if a path is in Windows format.
#
# In ambiguous cases, the following rules apply:
#
# - If the path contains a backslash, it is treated as a Windows path (even if
# forward slashes are present, too).
# - But there is an exception: If the path begins with a single forward slash,
# it is considered to be a Linux path, even if backslashes are present
# (because a path beginning with a directory separator does not make sense in
# Windows).
# - If the path does not contain any path separator, it is considered to be a
# Linux path.
#
# NB These rules are somewhat different from the `is_in_windows_format()`
# function in `wsl-linux-path`.
is_in_windows_format() { { [[ "$1" =~ \\ ]] && [[ ! "$1" =~ ^/[^/\\]+ ]]; }; }
# Checks if a WSL path points to a location in the Windows file system. Ie, it
# begins with /mnt/[drive letter]. Expects an absolute path. If necessary,
# resolve it with `realpath -m` first.
is_in_windows_filesystem() { [[ "$1" =~ ^/mnt/[a-zA-Z] ]]; }
# Option default values
escape_backslash=false
force_unc=false
while getopts ":ef" option; do
case $option in
e)
escape_backslash=true
;;
f)
force_unc=true
;;
\?)
fatal_error "Option '-$OPTARG' is invalid."
;;
:)
fatal_error "The argument for option '-$OPTARG' is missing."
;;
esac
done
# After removing options from the arguments, get the input path from the
# remaining argument or, if there is none, from stdin (ie, from a pipe). See
# - https://stackoverflow.com/a/35512655/508355
# - https://stackoverflow.com/a/36432966/508355
# - https://www.gnu.org/software/bash/manual/bash.html#Shell-Parameter-Expansion
#
# NB Multi-line input may come from stdin (or a redirected file). Therefore,
# multiple paths are handled from here on out, separated by newlines - one path
# per line.
shift $(($OPTIND - 1))
paths="${1:-$(</dev/stdin)}"
# Clean-up: Removing \r characters which may be left over from calls to Windows
# utilities.
paths="$(tr -d '\r' <<<"$paths")"
[ -z "$paths" ] && fatal_error "Missing argument. No path provided."
if $force_unc; then
unc_prefix="$(
set -o pipefail # See https://stackoverflow.com/a/19804002/508355
wslpath -w / | tr '\\' '/'
[ $? -ne 0 ] && exit 1; set +o pipefail
)" || fatal_error "Can't determine the UNC path prefix to WSL. \`wslpath\` call failed."
fi
while IFS= read -r path; do
[ -z "$path" ] && fatal_error "Missing argument in input from pipe/stdin. No path provided."
if is_abs_path_in_windows_format "$path"; then
# Absolute path in Windows format (conventional or UNC). Normalize
# accidental forward slashes to backslashes, otherwise input is left
# as-is.
converted="$(tr '/' '\\' <<<"$path")" || exit $?
elif $force_unc; then
# - Temporarily replace backslashes with forward slashes, so that
# realpath resolves a relative path correctly even if it contains a
# backslash (Windows format).
convert="$(tr '\\' '/' <<<"$path")" || exit $?
# - realpath: ensure an absolute path, so we can distinguish between
# the Windows FS (/mnt/..) and the Linux FS (everything else)
# - sed expression #1: if line begins with /mnt/, remove it and convert
# the next letter to upper case, followed by ":"
# - sed expression #2: if line begins with / (still), it's the Unix fs
# root. Replace it with the UNC path prefix (\\wsl$\Ubuntu\)
# - tr: replace forward slashes with backslashes
converted="$(
set -o pipefail # See https://stackoverflow.com/a/19804002/508355
realpath -m "$convert" | sed -r -e 's_^/mnt/([a-zA-Z])_\U\1:_' -e "s_^/_${unc_prefix}_" | tr '/' '\\'
[ $? -ne 0 ] && exit 1; set +o pipefail
)" || fatal_error "Error while processing the path \"${path//\\/\\\\}\"."
elif is_in_windows_format "$path"; then
# Relative path in Windows format. Normalize accidental forward slashes
# to backslashes, otherwise input is left as-is.
converted="$(tr '/' '\\' <<<"$path")" || exit $?
else
# Path in Linux format
abs_path="$(realpath -m "$path")" || fatal_error "Error while processing the path \"${path//\\/\\\\}\"."
is_in_windows_filesystem "$abs_path" && convert="$abs_path" || convert="$path"
# - sed expression #1: if line begins with /mnt/, convert each "/" to "\"
# See https://unix.stackexchange.com/a/337255/297737
# - sed expression #2: remove \mnt\, convert next letter to upper case, add ":"
converted="$(sed -r -e '/^\/mnt\// y_/_\\_' -e 's_^\\mnt\\([a-zA-Z])_\U\1:_' <<<"$convert")" || exit $?
fi
if $escape_backslash; then
sed 's_\\_\\\\_g' <<<"$converted"
else
echo "$converted"
fi
done <<<"$paths"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment