Ejemplo 1: while loop bash
while true;
do
#code
done
Ejemplo 2: script de shell de bucle while
#!/bin/sh
a=0
while [ $a -lt 10 ]
do
echo $a
a=`expr $a + 1`
done
Ejemplo 3: script de shell: mientras está hecho
# The syntax is as follows:
while [ condition ]
do
command1
command2
command3
done
# command1 to command3 will be executed repeatedly till the 'condition'
# is true.
# The argument for a while loop can be any boolean expression.
# Infinite loop occurs when the conditional never evaluates to false.
# Here is the while loop for a one-liner syntax:
while [ condition ]; do commands; done
while control-command; do COMMANDS; done
# For example, the following while loop will print 'welcome x times' 5 times
# on the screen:
#!/bin/bash
x=1
while [ $x -le 5 ]
do
echo "Welcome $x times"
x=$(( $x + 1 ))
done
# as one-liner:
x=1; while [ $x -le 5 ]; do echo "Welcome $x times" $(( x++ )); done
# Here is a sample shell code to calculate factorial using while loop:
#!/bin/bash
counter=$1
factorial=1
while [ $counter -gt 0 ]
do
factorial=$(( $factorial * $counter ))
counter=$(( $counter - 1 ))
done
echo $factorial
# To run just type:
$ chmod +x script.sh
$ ./script.sh 5
Ejemplo 4: bucle while de linux
while true;
do
#code
;done
Ejemplo 5: ejemplo de bucle while de script de shell
#!/bin/sh
INPUT_STRING=hello
while [ "$INPUT_STRING" != "bye" ]
do
echo "Please type something in (bye to quit)"
read INPUT_STRING
echo "You typed: $INPUT_STRING"
done
Ejemplo 6: para while bash
Use for in bash for iterating words in a string or values in an array as:
for value in {1, 2, 3}; do echo $value; done
for value in $(cat arguments_files.txt); do [some_command]; done
And use while for iterating lines from a pipe output as:
cat arguments_file.txt | while read line; do [some_command]; done
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)