16 lines
332 B
Plaintext
Raw Normal View History

#!/bin/sh
OUIURL=http://standards.ieee.org/regauth/oui/oui.txt
IABURL=http://standards.ieee.org/regauth/oui/iab.txt
OUIDIR=/var/cache/mac-to-devinfo
OUIFILE=$OUIDIR/oui.txt
IABFILE=$OUIDIR/iab.txt
[ -d $OUIDIR ] || mkdir -p $OUIDIR
[ -r $OUIFILE ] || wget -q -O $OUIFILE $OUIURL
[ -r $IABFILE ] || wget -q -O $IABFILE $IABURL