mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
cafea9a0a5
It now prevents double-mounting. Also adds vim filetype modelines.
19 lines
283 B
Bash
19 lines
283 B
Bash
[[ -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
|
|
# vim:ft=zsh
|