On Mon, 9 Jun 2003, Simon Kirby wrote:
[sroot@r2:/root]# while (1)
[sroot@r2:(while)]# sleep 1
[sroot@r2:(while)]# ip -o route show cache | wc -l
[sroot@r2:(while)]# end
I considered doing the same test on my box, but I don't have enough juice
left to do it every second:
root@tor-router# time ip -o route show cache | wc -l
15023
real 0m1.563s
user 0m0.380s
sys 0m1.180s
So instead...
root@tor-router# while (true); do sleep 5; ip -o route show cache | wc -l;
done
12630
15659
17951
20733
8875
9282
11913
4216
9437
11973
14503
17088
-Ralph