Skip to content

Instantly share code, notes, and snippets.

@curiousstranger
Created February 4, 2010 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curiousstranger/295107 to your computer and use it in GitHub Desktop.
Save curiousstranger/295107 to your computer and use it in GitHub Desktop.
On OS X, transform MAC format
#!/bin/sh
#
# Grabs MAC addresses in XXXXXXXXXXXX form from the clipboard and transforms it to xxxx.xxxx.xxxx
pbpaste -Prefer txt | perl -pe 's/(\w{4})(\w{4})(\w{4})/\1.\2.\3/;' | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment