16 lines
294 B
Plaintext
16 lines
294 B
Plaintext
|
#!/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
|
||
|
|
||
|
wget -q -O $OUIFILE $OUIURL
|
||
|
wget -q -O $IABFILE $IABURL
|
||
|
|