Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

notepad++

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
like image 669
SniperCoder Avatar asked Oct 12 '25 21:10

SniperCoder


1 Answers

Try CMD batch script

FOR /F %%link IN (<your text file.txt>) DO  start chrome %%link
like image 177
Vishal Santharam Avatar answered Oct 16 '25 07:10

Vishal Santharam