Fix stray bracket on FreeBSD

master
Dylan 10 years ago
parent 48787b3684
commit 7f0ff292d2
  1. 3
      fetch

@ -630,7 +630,8 @@ getmemory () {
*"BSD")
memtotal=$(dmesg | awk '/real mem/ {printf $5}')
memused=$(top -d1 | awk '/Mem:/ {print $4}')
memtotal=${memtotal/()MB/}
memtotal=${memtotal/\(/}
memtotal=${memtotal/)MB/}
memused=${memused/M/}
memory="${memused}MB / ${memtotal}MB"
;;

Loading…
Cancel
Save