mirror of
https://github.com/nushell/nushell.git
synced 2024-11-27 02:44:01 +01:00
21 lines
269 B
Markdown
21 lines
269 B
Markdown
|
# sleep
|
||
|
|
||
|
Delay for a specified amount of time
|
||
|
|
||
|
Syntax: `sleep <time> [additional_time]...`
|
||
|
|
||
|
## Flags
|
||
|
`-h`, `--help`
|
||
|
Display help message.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
Sleep for 3 seconds
|
||
|
```shell
|
||
|
> sleep 3sec
|
||
|
```
|
||
|
|
||
|
Sleep for 1 minute and 2 seconds
|
||
|
```shell
|
||
|
> sleep 1sec 1min 1sec
|
||
|
```
|