🔖

WSLでopenコマンド

2021/07/03に公開

すみませんこちらの方の記事を参考にalias設定してみました。
https://www.iplab.cs.tsukuba.ac.jp/~takakura/blog/20200715/

環境

  • ubuntu 20.04
  • zsh
$ vim .zshrc
# alias設定
alias open='cmd.exe /c start $(wslpath -w .)'

# 反映して実行
$ source .zshrc
$ open
'\\wsl$\Ubuntu-20.04\home\tsaeki'
CMD.EXE was started with the above path as the current directory.
UNC paths are not supported.  Defaulting to Windows directory.

openしました

Discussion