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

14 lines
317 B
Plaintext
Raw Normal View History

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