■ロードアベレージ(負荷)を表示する

■書式

open("| uptime")

■説明

ロードアベレージを表示するにはuptimeコマンドを使います。

■サンプル

#!/usr/bin/ruby
fh = open("| uptime")
print fh.gets
fh.close