21 lines
809 B
Plaintext
21 lines
809 B
Plaintext
module completions {
|
|
|
|
# change file owner and group
|
|
export extern chown [
|
|
user: string
|
|
--changes(-c) # report only when a change is made
|
|
--verbose(-v) # output a diagnostic for every file processed
|
|
--recursive(-R) # operate on files and directories recursively
|
|
-H # if a command line argument is a symbolic link to a directory, traverse it
|
|
-L # traverse every symbolic link encountered in a directory
|
|
-P # do not traverse any symbolic links (default)
|
|
--same-filesystem(-s) # do not cross filesystem boundaries (requires recursive)
|
|
...file: string
|
|
--help(-h) # Print help
|
|
--version(-V) # Print version
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|