Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- i=0
- echo "esto se ejecuta antes del bucle"
- while [ $i -lt 10 ]; do
- ((i++))
- if [ $i -eq 4 ]; then
- #break
- # en este punto al leer el "continue" vuelve a iniciarse el bucle
- echo "la instrucción 'echo \"\$i = \$i\" no se va a ejecutar, todo lo que venga
- a continuacion dentro del bucle se salta"
- continue
- fi
- # por lo tanto esto no se ejecuta
- echo "\$i = $i"
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement