como você grep, awk, head e sed um endereço ip

2

Estou tentando aprender o máximo possível sobre o Linux, atualmente estou tentando obter partes específicas da minha exibição de texto ifconfig para que fique exatamente assim:

 eth0:
       inet 192.168.1.000  netmask 255.255.255.0  broadcast 192.168.1.255
 wlan0:
       inet 192.168.1.xxx  netmask 255.255.255.0  broadcast 192.168.1.255

Eu cheguei tão perto, até agora eu tentei cerca de um milhão de combinações possíveis, mas estou perto de exausto, isso é um pouco do que eu tentei.

  ifconfig | head -19 | sed 'wlan0|\eth0' | awk '{print $2}' 
  ifconfig | head -19 | egrep 'wlan0|\eth0' | awk '{print $1}' | sed '/^net/p'
  ifconfig | head -19 | egrep 'wlan0|\eth0|' | awk '{print $1}'
  ifconfig | cut -d: -f1 | awk '{print $2}' | cut -d: -f1

Isso é o mais perto que eu cheguei

 ifconfig  |  head -n 2  |   cut -d: -f1; ifconfig | tail -8 | head -1

 eth0
    inet 192.168.1.000  netmask 255.255.255.0  broadcast 192.168.1.255
    inet 192.168.1.xxx  netmask 255.255.255.0  broadcast 192.168.1.255

Estou perdendo wlan0 entre 000 e xxx, Obrigado pelo seu tempo e esforço.

Minha exibição

 eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
    inet 192.168.1.000  netmask 255.255.255.0  broadcast 192.168.1.255
    inet6 xxxxxxxxxxxxxxxxxxxxxxx  prefixlen 64  scopeid 0x20<link>
    ether xxxxxxxxxxx  txqueuelen 1000  (Ethernet)
    RX packets 711634  bytes 635444016 (606.0 MiB)
    RX errors 0  dropped 0  overruns 0  frame 0
    TX packets 523020  bytes 98052518 (93.5 MiB)
    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

 lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
    inet 127.0.0.1  netmask 255.0.0.0
    inet6 ::1  prefixlen 128  scopeid 0x10<host>
    loop  txqueuelen 1000  (Local Loopback)
    RX packets 4266  bytes 735580 (718.3 KiB)
    RX errors 0  dropped 0  overruns 0  frame 0
    TX packets 4266  bytes 735580 (718.3 KiB)
    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

 wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
    inet 192.168.1.xxx  netmask 255.255.255.0  broadcast 192.168.1.255
    inet6 xxxxxxxxxxxxxxxx  prefixlen 64  scopeid 0x20<link>
    ether xxxxxxxxxxx  txqueuelen 1000  (Ethernet)
    RX packets 2429  bytes 371836 (363.1 KiB)
    RX errors 0  dropped 0  overruns 0  frame 0
    TX packets 227  bytes 79847 (77.9 KiB)
    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

Acabei de encontrar uma maneira com

 ifconfig  |  head -n 2  |   cut -d: -f1; ifconfig | tail -9 | cut -d: -f1 | head -2

Mas estou aberto a mais formas, se você as tiver

    
por hello moto 26.03.2018 / 22:40

2 respostas

2

Um modo adequado:

(é melhor usar ip(8) em 2018)

Usando o grep -P ( perl ' s regex)

for dev in wlan0 eth0; do
    ip address show dev $dev |
        grep -oP 'inet\s+\K\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'
done

Usando awk

for dev in wlan0 eth0; do
    ip address show dev $dev |
        awk -F'[ /]' '/inet /{print $6}'
done

Se você insistir em usar ifconfig :

for dev in wlan0 eth0; do
    ifconfig $dev | awk '/inet /{print $2}'
done

Last: se você precisar do nome da interface na saída:

for dev in wlan0 eth0; do
    ifconfig $dev | awk -vdev=$dev '/inet /{print dev, $2}'
done
    
por Gilles Quenot 26.03.2018 / 22:58
2

Aqui está uma amostra de esta resposta :

#!/bin/bash

# NAME: getIP

# Set the names of the target interfaces as array or assign the user's input
[[ -z ${@} ]] && IFACES=$(/sbin/ifconfig | sed -r '/^ .*/d; s/ .*//' | tr '\r\n' ' ') || IFACES=($@)

# Set IPv4 address match pattern
IPv4='[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'

# Get the IP address
for IFACE in ${IFACES[@]}; do
        /sbin/ifconfig "$IFACE" 2>/dev/null | grep -Po "${IPv4}" | tr '\r\n' ' ' | \
                awk -v iface="${IFACE}:" 'BEGIN{ print iface } { printf "\tinet %-16s netmask %-16s broadcast %s\n",$1, $3, $2}'
done

Nota: O script é baseado na saída de ifconfig no Ubuntu 16.04. Uso:

$ ./getIP          # Automatic mode
enp2s0:
    inet 192.168.100.110  netmask 255.255.255.0    broadcast 192.168.100.255
lo:
    inet 127.0.0.1        netmask                  broadcast 255.0.0.0
vmnet1:
    inet 192.168.201.1    netmask 255.255.255.0    broadcast 192.168.201.255
vmnet8:
    inet 192.168.15.1     netmask 255.255.255.0    broadcast 192.168.15.255

$ ./getIP enp2s0    # User's input mode
enp2s0:
    inet 192.168.100.110  netmask 255.255.255.0    broadcast 192.168.100.255
    
por pa4080 26.03.2018 / 23:11