#!/usr/bin/sh

# Read data from /proc/meminfo on linux and report back in the xymon client
# It's more compatable across more versions that running 'vmstat -s'

test -f /proc/meminfo && exec cat /proc/meminfo
