cosmopolitan/tool/zsh/nproc
Jōshin b08b92248b
mmake: -j$(nproc), passthrough o//
Now `mmake o/ape/ape.elf` works.
2023-12-17 01:55:52 -05:00

18 lines
270 B
Text

[[ -x $(whence -p nproc) ]] && {
command nproc && {
unfunction nproc
return
}
}
[[ -x $(which sysctl) ]] && {
nproc() {
sysctl -n hw.ncpu
}
nproc && return
}
# TODO other platforms
echo nproc: no implementation found >&2
nproc() {
echo 2
}
nproc