4
4

More than 5 years have passed since last update.

通信テストしたいときのワンライナー

Last updated at Posted at 2014-02-07

さくっと通信テストしたいときのワンライナー

HTTP

$ while true; do echo `date +%X`" | "`curl -s http://127.0.0.1/`; sleep 1; done

PING

$ while true; do echo `date +%X`" | "`ping -c 1 127.0.0.1`; sleep 1; done

他にあれば追記していく

4
4
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
4
4