ممنون که جواب دادین نه غفط خط فرمان دارم و نمیشه از اون استفاده کرد. آخر سر برنامش رو نوشتم
######################################################
#####################################################
##### Author=alireza bagheri #############
##### GPL v2 ##############
##### year=2013 ##############
##### email: alibagheri.28@gmail.com ##############
#####################################################
INTERVAL="10" # update interval in seconds
echo example eth1 156
if [ -z "$1" ]; then
echo
echo usage: $0 [network-interface]
echo
echo e.g. $0 eth0
echo
exit
fi
IF=$1
if [ -z "$2" ]; then
echo
echo usage: $0 [size packet with header file]
echo
echo e.g. $0 152
echo
exit
fi
while true
do
R1=`cat /sys/class/net/$1/statistics/rx_bytes`
T1=`cat /sys/class/net/$1/statistics/tx_bytes`
sleep $INTERVAL
R2=`cat /sys/class/net/$1/statistics/rx_bytes`
T2=`cat /sys/class/net/$1/statistics/tx_bytes`
TBPS=`expr $T2 - $T1`
RBPS=`expr $R2 - $R1`
TKBPS=`expr $TBPS / $2`
RKBPS=`expr $RBPS / $2`
echo "TX $1: $TKBPS kb/s RX $1: $RKBPS kb/s"
done