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

15 lines
497 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module completions {
# see if a directory or file is a mountpoint
export extern mountpoint [
--fs-devno(-d) # Show the major/minor numbers of the device that is mounted on the given directory.
--devno(-x) # Show the major/minor numbers of the given blockdevice on standard output.
--quiet(-q) # Be quiet - dont print anything.
file: string
--help(-h) # Print help (see more with '--help')
]
}
use completions *