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

13 lines
318 B
Plaintext

module completions {
# Print NAME with any leading directory components removed.
export extern basename [
NAME: string # the filename to process
SUFFIX?: string # the suffix to be removed
--help(-h) # Print help (see more with '--help')
]
}
use completions *