You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CORES=$(grep -c '^processor' /proc/cpuinfo) #to find out out many cores are there\
CORES=$(grep -c '^processor' /proc/cpuinfo | perl -ane 'print $F[0] - 2') #to find out out many cores are there and keeping 2 cores for other processes\
#find -print0 / xargs -0 protects you from whitespace in filenames\