mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 07:18:29 +01:00
11 lines
227 B
Markdown
11 lines
227 B
Markdown
# 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`
|