LoginSignup
0
2

More than 5 years have passed since last update.

一定間隔でアクセスするサンプル

Last updated at Posted at 2017-04-13

※ 攻撃には用いないでください。

watchをいれる
$ brew install watch
アクセス
# 3秒間隔
$ watch -n 3 curl https://example.com/

# ベーシック認証ありのページにアクセス
# ユーザー: user
# パスワード: passwd

$ watch -n 3 curl -u user:passwd https://example.com/

# いろいろ捨てたいとき
$ watch -n 3 curl -u user:passwd https://example.com/ > /dev/null
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2