7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
INTERFACE="$1"
|
|
|
|
ip -o l show ${INTERCACE} | sed -e "s@.*link\/ether @@g" -e "s@\ brd\ .*@@g"
|
|
|