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

14 lines
266 B
Plaintext
Raw Normal View History

2023-02-13 10:30:46 -05:00
module completions {
# return resolved physical path
export extern realpath [
--quiet(-q) # ignore warnings
...path: string
--help(-h) # Print help
--version(-V) # Print version
]
}
use completions *