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

19 lines
747 B
Plaintext

module completions {
# make links between files
export extern ln [
--force(-f) # remove existing destination files
--symbolic(-s) # make symbolic links instead of hard links
--verbose(-v) # print name of each linked file
-L # For each source_file operand that names a file of type symbolic link, create a (hard) link to the file referenced by the symbolic link.
-P # For each source_file operand that names a file of type symbolic link, create a (hard) link to the symbolic link itself.
...file: string
dest: string
--help(-h) # Print help
--version(-V) # Print version
]
}
use completions *