timeコマンドを使用して計測する。
time 指定したコマンドの実行時間を表示する
コマンドラインの行頭にtimeを付ける
例:
■shの場合
time sh /Users/user/Desktop/test.sh
■phpの場合
time /usr/bin/php -q /Users/user/Desktop/test.php real 0m1.120s user 0m0.959s sys 0m0.158s
■ls の場合
imac:Desktop root# time ls -l total 0 -rw-r--r-- 1 user staff 0 Oct 4 2009 .localized real 0m0.022s user 0m0.000s sys 0m0.002s