Reformatted pages once more

This commit is contained in:
Ruben Vereecken
2016-01-13 12:04:46 +01:00
parent c9d0ed3e16
commit 9676334119
16 changed files with 61 additions and 61 deletions

View File

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