如何通过批处理文件(一次四个)在 Firefox 的新选项卡中打开 URL 列表?

How can I open a list of URLs in new tabs with Firefox through a Batch File (four at a time)?

所以我在文本文件中有一个 URL 列表,我试图通过批处理文件 (.bat) 在新选项卡中使用 Firefox 打开这些文件。该程序需要打开前四个 选项卡,然后提示用户是否要打开后四个 选项卡。

文本文件(urls.txt):

http://www.google.com/
http://www.facebook.com/
http://www.youtube.com/
http://www.yahoo.com/
http://www.wikipedia.org/
http://www.amazon.com/
http://www.twitter.com/
http://www.linkedin.com/
http://www.live.com/
http://www.ebay.com/
http://www.blogspot.com/
http://www.bing.com/

我不太成功的尝试:

set counter=0
set /p="start firefox " <nul > newcommand.txt
for /f "tokens=*" %%a in (urls.txt) do (
    if counter < 5 (
        set /p="%%a " <nul >> newcommand.txt
        set /a counter=counter+1
    ) else (
        goto round2
    )
)

for /f "delims=" %%b in (newcommand.txt) do %%b
del newcommand.txt

:round2
echo.
echo Press Enter to exit the program...
pause > nul

我的程序崩溃了,我想这可能与我的for循环有关。

有没有人知道可以帮助我完成这项任务的知识?


对于新标签打开只是做 firefox.exe fb.com whosebug.com 现在从您的站点文件中获取所有站点并解决您的问题

for /f %a in (pathof.txt) do pathoffirefox.exe %g

参考: for