Created
February 26, 2023 02:31
-
-
Save samuelastech/4bb93e751a585ec30989be52e032312c to your computer and use it in GitHub Desktop.
Open up chrome tabs from CLI
This file contains 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
#!/bin/bash | |
webpages=( | |
"https://dictionary.cambridge.org/dictionary/" | |
"https://www.oxfordlearnersdictionaries.com/us/" | |
"https://context.reverso.net/traducao/" | |
"https://synonyms.reverso.net/synonym/" | |
"https://tophonetics.com/" | |
"https://translate.google.com/" | |
) | |
# Start a chrome session | |
google-chrome | |
for page in "${webpages[@]}" | |
do | |
google-chrome "$page" --new-tab | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment