Difference between revisions of "Get cpu count with bash script"
From DevOps Notebook
(Created page with "<syntaxhighlight lang="bash"> #!/bin/bash CPUCOUNT=`cat /proc/cpuinfo |grep processor |wc -l` echo "CPU COUNT IS: " $CPUCOUNT if [ $CPUCOUNT -lt "5" ] then MAXSES...") |
(No difference)
|
Revision as of 17:50, 27 January 2022
<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