3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AIXで1秒未満のsleepを実施

Posted at

##背景
業務でAIXを使用しており、sleepコマンドを利用したshellスクリプトで1秒未満のループをさせたい処理があった。

##現状
しかし、AIXのsleepコマンドは1秒未満の設定ができない。

sleep 0.1  # AIXのsleepコマンドだと1秒未満の設定が出来ない

##対応策
1秒未満のsleepを実施するにはperlを使う。
「-MTime::HiRes」は標準モジュールで存在してた。

perl -MTime::HiRes=sleep -e 'sleep(0.1)' # 1秒未満の設定可能

##補足
perlの標準モジュールを把握しとこう。
他の方法を知っている方がいたら教えて下さい。
それよりもkobito便利ですね。
もっと早く使えば良かった。

3
3
2

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?