Guest User

Untitled

a guest
Nov 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [[ ! $1 ]]
  4. then echo "Usage: $0 <mac address>"
  5. exit 1
  6. else
  7. mac=$1
  8. #echo ${mac:0:8}
  9. oui=${mac:0:8}
  10. grep -i $oui /usr/share/wireshark/manuf
  11. fi
Add Comment
Please, Sign In to add comment