#!/bin/bash
/sbin/ifconfig ${DEV:-eth0} | grep 'RX bytes' | perl -ne '/:(\d+).*?:(\d+)/; print "$1\t$2\n";'
