#!/bin/sh
if [ "$1" = "" ] ; then
    DEV=wlan0
else
    DEV=$1
fi
while [ 1 = 1 ] ; do sudo iptotal -r 5 $DEV ; done
