- Recortar IP
+ Responder ao Tópico
-
Recortar IP
Como faço para recortar o IP de um "ifconfig eth0" e colocar esse ip em um arquivo?
-
Recortar IP
bom agora eu to no openbsd num sei se as informacoes do ifconfig sao iguais mas eu consigo pegar o ip assim:
ifconfig eth0 | grep inet | awk {'print $2'}
-
Recortar IP
Como sempre o 1c3_m4n está correto. Mas vou dar uma encrementada no comando dele.
ifconfig eth0 | grep inet | awk {'print $2'} | cut -d : -f 2
-
Recortar IP
Sem usar awk (falta do que fazer :) ):
/sbin/ifconfig eth0 | grep inet | cut -d : -f 2 | cut -d " " -f 1
[]'s
-
Daniel B. Cid