Huginで使用されるコマンドラインツールを使用してパノラマを生成するバッチスクリプトをまとめました。これらのツールのいくつかの興味深い点の1つは、マルチコアの使用を許可することですが、このオプションはコマンド内でフラグを立てる必要があります。
私がこれまでに思いついたもの:
#get the last fields of each line in the file, initialize the line counter
results=$(more /proc/cpuinfo | awk '{print ($NF)}')
count=0
#loop through the results till the 12th line for cpu core count
for result in $results; do
if [ $count == 12 ]; then
echo "Core Count: $result"
fi
count=$((count+1))
done
これを行うためのより簡単な方法はありますか?