Get cpu count with bash script

From DevOps Notebook
Revision as of 17:51, 27 January 2022 by MilosZ (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
#!/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