Perl
- 1 ответ
- 0 вопросов
0
Вклад в тег
#!/bin/bash
for x in $(seq 2 4093)
do
echo "create vlan vlan${x}" >> /tmp/config.txt
echo "configure vlan vlan${x} tag ${x}" >> /tmp/config.txt
echo "configure vlan vlan${x} add ports all" >> /tmp/config.txt
done