Skip to content

Instantly share code, notes, and snippets.

@sachinsmc
Created August 6, 2017 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sachinsmc/93ae92a273946f44522da9b62220622a to your computer and use it in GitHub Desktop.
Save sachinsmc/93ae92a273946f44522da9b62220622a to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Description : This scipts will display system information"
echo "Disk Consumption : "
df
echo "Memory Usage : "
free
echo "Network Connections : "
vmstat
netstat
echo "Process Running : "
ps
echo "End of script."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment