如何在cmd shell中打开html

时间:2019-05-03 15:10:41

标签: shell google-chrome cmd

如何查找html文件并在Chrome中打开它。我曾经结合

启动chrome(dir / b / s * .html) 但不起作用

那么我如何首先找到HTML文件并在Chrome中打开?

1 个答案:

答案 0 :(得分:1)

为什么不在循环中使用dir?

如果您需要一些子文件夹“ GFExperience”中的“ index.html”,请在示例代码上方:

:: command line
for /f "tokens=*delims=\" %i in ('dir /b/s *.html ^| find /i "GFExperience" ^| find /i "index.html"')do pushd "%~pi" && start chrome.exe -tab "%i" && popd

:: bat file
for /f "tokens=*delims=\" %%i in ('dir /b/s *.html ^| find /i "GFExperience" ^| find /i "index.html"')do pushd "%%~pi" && start chrome.exe -tab "%%i" && popd