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

22 lines
521 B
Plaintext
Raw Normal View History

2023-02-13 10:30:46 -05:00
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 *