Skip to content

Instantly share code, notes, and snippets.

@naonao0001777
Last active January 3, 2021 16:36
Show Gist options
  • Save naonao0001777/e405ff5782684557108b42355a4a78b7 to your computer and use it in GitHub Desktop.
Save naonao0001777/e405ff5782684557108b42355a4a78b7 to your computer and use it in GitHub Desktop.
bash curl roop
### curl無限ループ
# change <URL>
while true;do curl https://google.com ;done
# correct? syntax
while [ ture ]; do curl https://google.com; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment