Search code examples
notepad++

Open http:// links from Notepad++ all at once


i have a list of http links in my notepad++ i want to open them all at once, how i can do that? i tried all the solution and shortcuts i did not get any good result.

Example:

http://example1.com
http://example2.com
http://example3.com

Solution

  • Try CMD batch script

    FOR /F %%link IN (<your text file.txt>) DO  start chrome %%link