7 lines
178 B
Plaintext
7 lines
178 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
this_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||
|
source "$this_dir/common"
|
||
|
|
||
|
free | grep Mem | awk '{ printf("%.5f", $3/$2) }' | fmt_percent
|