#!/bin/bash top -b -n 1 | grep Mem | sed 's/:/ /g' | awk '{printf "%.2f/%.2f %s\n", $7, $3, $1}' | sed -n '1 p'