watch コマンドを使ってみる
unix watch
Published: 2018-06-03

目的

並列で複数走らせるプログラムがあり、その監視のため watch コマンドを使いました。

方法

$ watch -n 10 "ps aux | grep php"

Every 10.0s: ps aux | grep php

vagrant  22355  0.0  0.5 109048  2744 pts/0    S+   10:26   0:00 watch -n 10 ps aux | grep php
vagrant  22356  0.0  0.2 106076  1292 pts/0    S+   10:26   0:00 sh -c ps aux | grep php
vagrant  22358  0.0  0.1 103336   916 pts/0    S+   10:26   0:00 grep php

これで 10秒ごとにコマンドを実行してくれます。

参考URL