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