Linux sysinfo

Just a small script to show system name, processor info and memory info all in one:

#!/bin/bash
uname -a &&  cat /proc/cpuinfo | head -8 && cat /proc/meminfo | head -5

Post a Comment

Your email is never shared. Required fields are marked *

*
*