diff options
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc.local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.local b/rc.d/rc.local index fcfe0e7a..72e00b82 100755 --- a/rc.d/rc.local +++ b/rc.d/rc.local @@ -14,7 +14,7 @@ if [ -f /etc/redhat-release ]; then _i*) a="an";; esac - NUMPROC=`grep -cl "^cpu[0-9]+" /proc/stat` + NUMPROC=`egrep -c "^cpu[0-9]+" /proc/stat` if [ "$NUMPROC" -gt "1" ]; then SMP="$NUMPROC-processor " if [ "$NUMPROC" = "8" -o "$NUMPROC" = "11" ]; then |