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

12 lines
239 B
Plaintext
Raw Normal View History

2023-02-13 10:30:46 -05:00
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 *