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

15 lines
327 B
Plaintext

module completions {
# call the link function to create a link to a file
export extern link [
file1: string
file2: string
--verbose(-v) # output a diagnostic for every file processed
--help(-h) # Print help
--version(-V) # Print version
]
}
use completions *