#!/bin/sh
#
# Copyright (C) 1996  Lars Berntzon
#
cat /proc/meminfo | $AWK '
/Mem:/ {
    print $2
}'
