Removed use of seq command.
This commit is contained in:
parent
30131d8095
commit
8a0b0c544f
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ then
|
|||
echo "Quick Mode enabled. Randomly seeding two addresses from full list."
|
||||
fi
|
||||
|
||||
for a in $(seq 1 $num)
|
||||
for ((a=1; a<=$num; a++));
|
||||
do
|
||||
selectedAddr=${Addr[$RANDOM % ${#Addr[@]} ]}
|
||||
echo "Cycling WiFi..."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue