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

14 lines
317 B
Plaintext

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