Hacker News new | ask | show | jobs
by toomuchtodo 2214 days ago
In case you don’t get around to writing that golang code.

https://unix.stackexchange.com/questions/17659/opening-multi...

3 comments

Also could be handled via `open` (macOS) / `xdg-open` (Linux) / `start` (Windows).
No need for a while loop. Just have a file with each site name in a new line. Then -

cat sites-list | xargs -n1 firefox --new-tab

This is so nice