12 lines
239 B
Plaintext
12 lines
239 B
Plaintext
module completions {
|
|
|
|
# Print the number of processing units available
|
|
export extern nproc [
|
|
--all(-a) # Print the number of installed processors
|
|
--help(-h) # Print help
|
|
]
|
|
|
|
}
|
|
|
|
use completions *
|