mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 21:35:24 +02:00
13 lines
451 B
Markdown
13 lines
451 B
Markdown
# time
|
|
|
|
> コマンドの実行にかかった時間を計測します。
|
|
> 注意: `time` はシェル組み込み、スタンドアロン、またはその両方として存在することができます。
|
|
> もっと詳しく: <https://manned.org/time>。
|
|
|
|
- `コマンド`を実行し、計測時間を `stdout` に出力:
|
|
|
|
`time {{コマンド}}`
|
|
|
|
- 非常にシンプルなストップウォッチを作成 (Bash でのみ動作):
|
|
|
|
`time read`
|