Open Several URLs On Chrome Using Bash Script on Mac

Write the code below on a text file and save the file with the .sh extension:

#!/usr/bin/env bash
open -a "Google Chrome" \
URL_1 \
URL_2 \
URL_3 \
URL_4 \
URL_5

Then give permission to file:

chmod +x FILE_NAME.sh

Run it with the command below:

./FILE_NAME.sh

We are done.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.