mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 13:42:11 +01:00
commit
c179ef64c6
1 changed files with 17 additions and 0 deletions
17
cheat/cheatsheets/for
Normal file
17
cheat/cheatsheets/for
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# basic loop
|
||||||
|
for i in 1 2 3 4 5 6 7 8 9 10
|
||||||
|
do
|
||||||
|
echo $i
|
||||||
|
done
|
||||||
|
|
||||||
|
# loop ls command results
|
||||||
|
for var in `ls -alF`
|
||||||
|
do
|
||||||
|
echo $var
|
||||||
|
done
|
||||||
|
|
||||||
|
# loop specified number of times
|
||||||
|
for i in `seq 1 10`
|
||||||
|
do
|
||||||
|
echo $i
|
||||||
|
done
|
Loading…
Reference in a new issue