avd/mod/mem
Narvin Singh 7d21134068 Feat: Rename module directory to mod
This is a breaking change so this will be a new major version.
2020-12-31 13:50:52 -05:00

16 lines
304 B
Bash
Executable File

#!/bin/bash
mod_mem () {
# Customizable configuration constants
local -r DEFAULT_PRE=' '
local -r DEFAULT_SUF='%'
local -r pre="${1-${DEFAULT_PRE}}"
local -r suf="${2-${DEFAULT_SUF}}"
printf '%b' "${pre}"
free | awk 'NR == 2 {printf "%3.0f", $3 * 100 / $2}'
printf '%b' "${suf}"
}