Get cpu count with bash script
From DevOps Notebook
<syntaxhighlight lang="bash">
- !/bin/bash
CPUCOUNT=`cat /proc/cpuinfo |grep processor |wc -l` echo "CPU COUNT IS: " $CPUCOUNT
if [ $CPUCOUNT -lt "5" ] then MAXSESSIONS="7" else MAXSESSIONS="12" fi echo "max session:" $MAXSESSIONS </syntaxhighlight