Files
mastering-unix-ss/chapter23/function_get_real_mem
Fabio Scotto di Santolo 4cc88d2f6e initial commit
2020-07-28 19:28:25 +02:00

10 lines
153 B
Plaintext
Executable File

get_real_mem ()
{
# Query the system for the total real memory
echo "$(bootinfo -r)KB"
# lsattr -El sys0 -a realmem | awk '{print $2}' # Works too
}