Skip to content

Instantly share code, notes, and snippets.

@nikuyoshi
Created November 22, 2016 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikuyoshi/ce8daa0969ddb95be87383a1792c86d9 to your computer and use it in GitHub Desktop.
Save nikuyoshi/ce8daa0969ddb95be87383a1792c86d9 to your computer and use it in GitHub Desktop.
curlでネットワークスピードを確認するワインライナー
curl http://hoge.com -o /dev/null
# 何度も実行する場合
# 参考: http://stackoverflow.com/questions/1289026/syntax-for-a-single-line-bash-infinite-while-loop
while true; do curl http://hoge.com -o /dev/null; sleep 1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment