Say if I have about 25 tabs open in my browser. Is there a way I could:
- a) save all those URLs to a file and
- b) Start a browser instance to load all of these URLs/
Browsers: Firefox/chrome (latest versions as of today).
If there's a browser that can do this, please do point that out as well



firefox &; cat file.txt | xargs firefox. – PlasmaPower Mar 26 '14 at 00:46for line in $(cat $file); do firefox -new-tab "$line" & 2>/dev/null; sleep 2; donewhere `$file' is the wanted text file that (SaveMyTabs)[https://addons.mozilla.org/fr/firefox/addon/save-my-tabs/] auto-write. Just have to remove the "Window" column first. – tuk0z Oct 28 '15 at 12:49