Skip to content

Linux Command Line Cheat Sheet

This page contains a list of commonly used commands that I use working with Linux.

How to check memory usage in Linux in percentage?

free | grep Mem | awk '{print $3/$2 * 100.0}'
Back to top