#!/bin/sh

if [ -r /etc/ppp/stats ]; then
        cat /etc/ppp/stats
else
        echo -e "ERROR: 'stats' file not found!\a"
        exit 0
fi

