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