Removed use of seq command.

This commit is contained in:
Alex Tarrell 2014-11-09 23:45:56 -06:00
parent 30131d8095
commit 8a0b0c544f

View file

@ -87,7 +87,7 @@ then
echo "Quick Mode enabled. Randomly seeding two addresses from full list." echo "Quick Mode enabled. Randomly seeding two addresses from full list."
fi fi
for a in $(seq 1 $num) for ((a=1; a<=$num; a++));
do do
selectedAddr=${Addr[$RANDOM % ${#Addr[@]} ]} selectedAddr=${Addr[$RANDOM % ${#Addr[@]} ]}
echo "Cycling WiFi..." echo "Cycling WiFi..."