Created
November 22, 2016 05:47
-
-
Save nikuyoshi/ce8daa0969ddb95be87383a1792c86d9 to your computer and use it in GitHub Desktop.
curlでネットワークスピードを確認するワインライナー
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
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