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

13 lines
252 B
Plaintext

module completions {
# strip last component from file name
export extern dirname [
--zero(-z) # end each output line with NUL, not newline
...name: string
--help(-h) # Print help
]
}
use completions *