#!/bin/sh
# DESCRIPTION: System activity reporter (sar)

if [ -x /bin/sar ]; then
	/bin/sar -A
else
	echo "sar not installed."
fi
