Last active
June 13, 2017 23:52
-
-
Save davidrleonard/99f0f364c9c7a77510c2fb734c13c3f3 to your computer and use it in GitHub Desktop.
Opens 10 browser windows that say "Hi Kate"
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
if [ ! -f ~/.hi.html ]; then echo '<title>Hi Kate</title><h1>Hi Kate</h1>' > ~/.hi.html; fi && echo 'Opening gulp or whatever...' && for ((n=0;n<10;n++)); do open -a 'Google Chrome' ~/.hi.html; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment