This shows you the differences between the selected revision and the current version of the page.
| wiki:bash | wiki:bash 21.08.2009 12:40 current | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Bash ====== | ||
| + | |||
| + | ===== For Loop ===== | ||
| + | |||
| + | <code bash> | ||
| + | $ for i in $(seq 1 10); do <command> ; done | ||
| + | </code> | ||
| + | |||