shitbox/pkg/usr/share/nu/completions/sleep.nu

12 lines
249 B
Plaintext
Raw Normal View History

2023-02-13 10:30:46 -05:00
module completions {
# Suspend execution for an interval of time
export extern sleep [
seconds: string # The number of seconds to sleep
--help(-h) # Print help (see more with '--help')
]
}
use completions *