Skip to content

Instantly share code, notes, and snippets.

@curiousstranger
Created February 4, 2010 20:55
Show Gist options
  • Save curiousstranger/295095 to your computer and use it in GitHub Desktop.
Save curiousstranger/295095 to your computer and use it in GitHub Desktop.
Script to convert mac address on clipboard between formats
#!/bin/sh
#
# Grabs MAC addresses in xxxx.xxxx.xxxx form from the clipboard and transforms it to XXXXXXXXXXXX
pbpaste -Prefer txt | perl -pe 's/(\w{4}).(\w{4}).(\w{4})/\U\1\2\3/;' | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment