hey all..
i'm trying to install rrdtool on my 5.2 freebsd box, everything has gone fine until the point now where i need to monitor the rx/tx values...
within a perl script i'm declaring a variable (my $in = `netstat -nbI ed0 | awk '/Link/ {print $7;}'`
returns data, but not just an integer alone.
typing:
netstat -nbI ed0|awk '/Link/ {print $7;}'
from a command prompt returns the correct RX Integer Value only. no more data.
what am i missing to get this command to return the correct value from within a perl script??
thanks in advanced