Eine Notiz zur Konvertierung zwischen Windows-Verzeichnissen und Linux-Verzeichnissen wie /mnt/c und C: mithilfe des wslpath-Befehls in Windows WSL Linux Bash.
Der wslpath-Befehl konvertiert /mnt zu C: und umgekehrt.
$ wslpath -w /mnt/c/pg/
C:\pg
$ wslpath C:/Users
/mnt/c/Users
Es scheint, dass Bash-Pfade einen Fehler verursachen. Hmm.
$ echo $PWD
/home/yuis/lib
$ wslpath -w $PWD
wslpath: /home/yuis/lib: Result not representable
$ realpath hoge.md
/home/yuis/lib/hoge.md
$ wslpath -w hoge.md
wslpath: hoge.md: Result not representable