14 lines
300 B
Plaintext
14 lines
300 B
Plaintext
module completions {
|
|
|
|
# compute and check MD5 message digest
|
|
export extern md5sum [
|
|
--check(-c) # read checksums from the FILEs and check them
|
|
...file: string
|
|
--help(-h) # Print help
|
|
--version(-V) # Print version
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|