Add for plugin

This commit is contained in:
shigemk2 2016-01-01 00:15:51 +09:00
parent b6137cac8b
commit 70ef6239fe
1 changed files with 17 additions and 0 deletions

17
cheat/cheatsheets/for Normal file
View 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