Skip to content

Instantly share code, notes, and snippets.

@tashrifbillah
Created June 12, 2025 14:03
Show Gist options
  • Save tashrifbillah/9219180c1ecde91d1054a6dc838f4828 to your computer and use it in GitHub Desktop.
Save tashrifbillah/9219180c1ecde91d1054a6dc838f4828 to your computer and use it in GitHub Desktop.
Get CPU, Memory, and GPU vitals
#!/bin/bash
date
echo
nvidia-smi | head -n 10 | tail -n 5
echo
echo CPU temp
cat /sys/class/thermal/thermal_zone?/temp
echo
echo %mem %cpu
ps -eo %cpu,%mem,user,command --sort %cpu | tail -n 5
echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment