Bash script that generates a random MAC address: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * bash =Overview= hexdump -n3 -e'/3 "52:54:00" 3/1 ":%02X"' /dev/random; echo """)
 
Line 5: Line 5:
=Overview=
=Overview=


  hexdump -n3 -e'/3 "52:54:00" 3/1 ":%02X"' /dev/random; echo ""
<syntaxhighlight lang='bash'>
hexdump -n3 -e'/3 "52:54:00" 3/1 ":%02X"' /dev/random; echo ""
</syntaxhighlight>

Revision as of 00:18, 24 September 2017

Internal

Overview

hexdump -n3 -e'/3 "52:54:00" 3/1 ":%02X"' /dev/random; echo ""