#!/bin/bash
# dl: Display the current download speed of the interfaces
# FIXME I think this is broken

for I in ${IF:-eth0}; do
	ip -s link show $I | sed -n '/RX/,+1 {/[0-9]/{s/^ *//; s/ .*//; p}}'
done | grep -vw 0
