diff --git a/cheat/cheatsheets/for b/cheat/cheatsheets/for new file mode 100644 index 0000000..db57266 --- /dev/null +++ b/cheat/cheatsheets/for @@ -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 \ No newline at end of file