Merge pull request #4664 from rdwebdesign/fix/docker_1015

Remove `@` and following character from interface name
pull/4667/head
yubiuser 2 years ago committed by GitHub
commit efa99a177e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -906,9 +906,11 @@ dig_at() {
# Removes all interfaces which are not UP
# s/^[0-9]*: //g;
# Removes interface index
# s/@.*//g;
# Removes everything after @ (if found)
# s/: <.*//g;
# Removes everything after the interface name
interfaces="$(ip link show | sed "/ master /d;/UP/!d;s/^[0-9]*: //g;s/: <.*//g;")"
interfaces="$(ip link show | sed "/ master /d;/UP/!d;s/^[0-9]*: //g;s/@.*//g;s/: <.*//g;")"
while IFS= read -r iface ; do
# Get addresses of current interface

Loading…
Cancel
Save