github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/optional/time/sleep_doc.yaml (about) 1 - DocumentID: sleep 2 Title: >- 3 `sleep` 4 CategoryID: optional 5 Summary: >- 6 Suspends the shell for a number of seconds 7 Description: |- 8 `sleep` is an optional builtin which suspends the shell for a defined number 9 of seconds. 10 Usage: |- 11 ``` 12 sleep integer 13 ``` 14 Examples: |- 15 ``` 16 » sleep 5 17 # murex sleeps for 5 seconds 18 ``` 19 Detail: |- 20 `sleep` is very simplistic - particularly when compared to its GNU coreutil 21 (for example) counterpart. If you want to use the `sleep` binary on Linux 22 or similar platforms then you will need to launch with the `exec` builtin: 23 24 ``` 25 » exec sleep 5 26 ``` 27 Synonyms: 28 Related: 29 - time 30 - source 31 - exec