22 lines
521 B
Plaintext
22 lines
521 B
Plaintext
module completions {
|
|
|
|
def "nu-complete mknod type" [] {
|
|
[ "b" "c" "p" ]
|
|
}
|
|
|
|
# make block or character special files
|
|
export extern mknod [
|
|
--mode(-m): string # set file permission bits to MODE, not a=rw - umask
|
|
--verbose(-v) # output a diagnostic for every file processed
|
|
file: string
|
|
type: string@"nu-complete mknod type"
|
|
major?: string
|
|
minor?: string
|
|
--help(-h) # Print help
|
|
--version(-V) # Print version
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|