Merge pull request #250 from shigemk2/add-for-plugin

Add "for" plugin
This commit is contained in:
Chris Lane 2016-01-04 20:13:21 -05:00
commit c179ef64c6
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