Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 913 Bytes

watch-command.md

File metadata and controls

38 lines (21 loc) · 913 Bytes

watchコマンドが便利だった

  • 引数に指定した間隔でコマンドを実行してくれる
  • 端末の描画をリフレッシュする
  • 内容が多いと、入り切らない部分は表示されない

書式

watch [options] command

オプション

-n, --interval seconds

  • 更新間隔を指定できる
  • 0.1秒未満にはできない

-d, --difference

  • 差分が発生したところをハイライト表示する

cli twitterクライアントで、1分間隔で検索結果を表示したい

watch -n 60 tw -s="hoge"

参考リンク