open a list of urls from text file into IE7

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
isaac_cm
Forum Commoner
Posts: 44
Joined: Wed May 17, 2006 8:47 am

open a list of urls from text file into IE7

Post by isaac_cm »

hello,
I have a text file contains alot of urls I need to open all or some of them into several tabs automatically , how I do that with IE7 and FF

Thanks
User avatar
omniuni
Forum Regular
Posts: 738
Joined: Tue Jul 15, 2008 10:50 pm
Location: Carolina, USA

Re: open a list of urls from text file into IE7

Post by omniuni »

Write a Bash or PHP script that executes each page like this:

Code: Select all

firefox -new-tab http://google.com
Post Reply