info:bash_loop

#!/bin/bash
# [[bash_loop]] Script to automatically backup files using simple FTP
echo
echo "testing 69 connections to MySQL"

a=0

while [ $a -le 69 ]

do
 a=$(($a+1))

# if [ $a -eq 3 ] || [ $a -eq 11 ]
 # Excludes 3 and 11
# then
#   continue
   # Skip rest of this particular loop iteration.
# fi
  • info/bash_loop.txt
  • Dernière modification : 2018/07/18 09:45
  • de radeff