Fix used memory on FreeBSD
This commit is contained in:
parent
7f0ff292d2
commit
ed9cbac233
6
fetch
6
fetch
|
@ -629,10 +629,12 @@ getmemory () {
|
|||
|
||||
*"BSD")
|
||||
memtotal=$(dmesg | awk '/real mem/ {printf $5}')
|
||||
memused=$(top -d1 | awk '/Mem:/ {print $4}')
|
||||
memtotal=${memtotal/\(/}
|
||||
memtotal=${memtotal/)MB/}
|
||||
memused=${memused/M/}
|
||||
memfree=$(top -d1 | awk '/Mem:/ {print $10}')
|
||||
memfree=${memfree/M/}
|
||||
memused=$((memtotal - memfree))
|
||||
|
||||
memory="${memused}MB / ${memtotal}MB"
|
||||
;;
|
||||
|
||||
|
|
Reference in New Issue