13 lines
352 B
Plaintext
13 lines
352 B
Plaintext
|
module completions {
|
||
|
|
||
|
# Prints the name of the current host. The super-user can set the host name by supplying an argument.
|
||
|
export extern hostname [
|
||
|
NAME?: string # name to set
|
||
|
--strip(-s) # Removes any domain information from the printed name.
|
||
|
--help(-h) # Print help
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
use completions *
|