
2 Mar
2002
2 Mar
'02
19:12
Hallo, Bitte lass das TOFU, Yann! On Sat, 02 Mar 2002, Yann Wissenbach wrote:
/sbin/ifconfig ppp0 | grep "inet addr:" | awk '{print $2}' | cut -c 6- | perl -pe 'chomp;' > /tmp/ip-adresse.txt
UARGL! Der Schrott ist wohl echt nicht auszurotten! Ich zaehle: grep + awk + cut + perl... Das ist (nach den Benchmarks die ich mal gemacht habe) die langsamste Variante ueberhaupt[1]. Besser: /sbin/ifconfig ppp0 | sed -n 's/.*addr:\([0-9\.]*\).*/\1/p'; -dnh [1] das script mit den diversen Varianten zum testen kannst du ggfs. gerne per PM haben... -- The goal of Computer Science is to build something that will last at least until we've finished building it. -- BSD fortune file