mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 20:28:43 +00:00
10 lines
166 B
Plaintext
10 lines
166 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
make ips
|
||
|
echo "Global tables:"
|
||
|
for a in 4 5 6 7 8 9 10 11 12 13 14 15 ; do
|
||
|
./ips <global $a $((1<<($a+2)))
|
||
|
done
|
||
|
echo "Local tables:"
|
||
|
./ips <local 6 1000
|