2012-04-08 Practice►DevOps Practice Shell Script to fetch CPU, Memory and Disk Info in Linux This is a script to populate computer hardware configuration in Linux. Script to populate CPU, Memory and Disk Info123456789#!/bin/bash# CPUcat /proc/cpuinfo | grep -e "model name" -e "cores" -m 2 && cat /proc/cpuinfo | grep -e "physical id"| sort | uniq -c# Memoryfree -got# Diskdf -lh -t ext4 --total