15 lines
348 B
Plaintext
15 lines
348 B
Plaintext
|
module completions {
|
||
|
|
||
|
# remove directories
|
||
|
export extern rmdir [
|
||
|
--parents(-p) # remove DIRECTORY and it's ancestors
|
||
|
...dir: string
|
||
|
--verbose(-v) # output a diagnostic for every file processed
|
||
|
--help(-h) # Print help
|
||
|
--version(-V) # Print version
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
use completions *
|