memo.xight.org

日々のメモ

秒間隔でコマンドを繰り返し実行し続ける

Summary

  netstat -i を1秒間隔で自動実行

while と sleep を使ってシェルスクリプトを書く

$ while true; do date; netstat -i; sleep 1; clear; done;


watch コマンドを使う

$ watch --interval 1 netstat -i


Reference

  Landscape - 2004-05-28
  http://sonic64.com/2004-05-28.html#2004-05-28-1