Created
June 15, 2020 11:56
-
-
Save tomer-yoskovich/7298e6d6446e0647bd305f9adfeff5bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function openMultipleChromeWebsites() { | |
declare websites="" | |
arr=( | |
'https://www.microsoft.com' | |
'https://www.apple.com' | |
'https://www.amazon.com' | |
) | |
for i in "${arr[@]}" | |
do | |
websites="$websites $i" | |
done | |
open -na "Google Chrome" --args --new-window $(echo $websites) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment