- Published on
WSL Bashのwslpathコマンドで/mnt/c・C:変換
- Authors
- Name
- Shou Arisaka / 有坂翔
WindowsのWSL Linux Bashのwslpathコマンドで/mnt/c・C:のようなWindowsディレクトリ・Linuxディレクトリの相互的な変換を行う方法についてメモです。
/mnt
をC:
に、また、その逆をしてくれるコマンドがwslpathです。
$ wslpath -w /mnt/c/pg/
C:\pg
$ wslpath C:/Users
/mnt/c/Users
Bashパスだとエラーになるようです。んー。
$ 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