Horje
for loop iteration in shell script Code Example
For loop in shell script
for i in `seq 1 10`
do
	echo $i #Do something here.
done
for loop iteration in shell script
#!/bin/bash
START=1
END=5
echo "Countdown"
 
for (( c=$START; c<=$END; c++ ))
do
	echo -n "$c "
	sleep 1
done
 
echo
echo "Boom!"




Shell

Related
angular toast Code Example angular toast Code Example
install toastr in angular Code Example install toastr in angular Code Example
git exclude some files from git commit Code Example git exclude some files from git commit Code Example
apt install force Code Example apt install force Code Example
how to install choclatey using command prompt Code Example how to install choclatey using command prompt Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10