Reputation: 823
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
Upvotes: 4
Views: 8055
Reputation: 2023
Try CMD batch script
FOR /F %%link IN (<your text file.txt>) DO start chrome %%link
Upvotes: 8