for/if/while: add

This commit is contained in:
Denis Sokolov
2016-01-05 20:47:12 +02:00
parent bc367687e3
commit 27cc01819f
3 changed files with 33 additions and 0 deletions

11
pages/common/for.md Normal file
View File

@@ -0,0 +1,11 @@
# for
> Shell loop over parameters
- Perform a command with different arguments.
`for argument in 1 2 3; do {{command $argument}}; done`
- Perform a command in every directory.
`for d in *; do (cd $d; {{command}}); done`