是否有命令在Windows上使用bash在bash(或zsh)中使用bash打开Windows文件资源管理器中的当前目录?我想我看到了explorer .
可以做的某个地方,但它告诉我No command 'explorer' found
答案 0 :(得分:5)
自Windows 10周年更新以来,您现在可以directly run Windows executables from Bash/WSL。尝试通过Windows更新更新Windows,然后在Bash中运行以下命令:
$ explorer.exe .
可替换地,
$ /mnt/c/Windows/explorer.exe .
(其中c
是Windows安装的驱动器)。这将在当前目录中打开一个新的Explorer窗口。
答案 1 :(得分:0)
这对我在Windows 10上的GIT bash上运行良好。
$ which explorer
/c/Windows/explorer
$ explorer .
答案 2 :(得分:0)
我无法获得$ /mnt/c/Windows/explorer.exe。为我工作。对我有用的是安装Search Everything并使用它在当前目录中搜索文件。然后,您可以右键点击结果中的文件,然后点击“打开路径”。
答案 3 :(得分:0)
在下面运行此命令,您可以创建一个符号链接,您可以通过 /explorer.exe
sudo ln -s /mnt/c/Windows/explorer.exe explorer.exe
现在运行:
/explorer.exe .