16 lines
408 B
Plaintext
16 lines
408 B
Plaintext
module completions {
|
|
|
|
# Print symbolic link target or canonical file name
|
|
export extern readlink [
|
|
...path: string
|
|
--canonicalize(-f) # Canonicalize path
|
|
-c # Canonicalize path
|
|
--no-newline(-n) # Do not print the terminating newline.
|
|
--help(-h) # Print help
|
|
--version(-V) # Print version
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|