#!/bin/bash
for dev in `ifconfig -a | grep -e "^eth" | cut -d' ' -f1`; do
   ethtool $dev
done
