1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/for.md

13 lines
286 B
Markdown
Raw Normal View History

2016-01-05 20:47:12 +02:00
# for
2016-01-13 12:04:46 +01:00
> Shell loop over parameters.
2021-03-30 09:26:00 +02:00
> More information: <https://man.archlinux.org/man/for.n>.
2016-01-05 20:47:12 +02:00
2016-01-13 12:04:46 +01:00
- Perform a command with different arguments:
2016-01-05 20:47:12 +02:00
`for argument in 1 2 3; do {{command $argument}}; done`
2016-01-13 12:04:46 +01:00
- Perform a command in every directory:
2016-01-05 20:47:12 +02:00
`for d in *; do (cd $d; {{command}}); done`