MAC Address Generator - Sequential

I have the following range of MAC addresses:

00:14:4F:FC:00:00 - 00:14:4F:FF:FF:FF

IS it possible to generate a fromatted list of sequential numbers (hex)?

What would be the best language to use? Perl?

Thanks

for x in {252..255};do for y in {0..255};do for z in {0..255};do printf "00:14:4F:%X:%X:%X\n" $x $y $z;done;done;done >> MAC.list

Here is one bash solution :wink: