Difference between revisions of "For"
Jump to navigation
Jump to search
Line 40: | Line 40: | ||
== See also == | == See also == | ||
* {{for}} | * {{for}} | ||
− | * {{ | + | * {{flow control}} |
− | |||
− | |||
[[Category:Programming]] | [[Category:Programming]] |
Revision as of 16:19, 24 August 2023
Examples
for i in `ls sa??`; do sar -f /var/log/sysstat/$i; done
YOURVAR="value1 value2 value3" for i in $YOURVAR; do # Should not be quoted echo "$i" done
for i in $(seq 5); do echo $i done
Python
for i in range(5): do_some_function()
Powershell
for ($num = 1 ; $num -le 10 ; $num++){ "I count $num"}
Terraform
Related terms
See also
for, for_each (Terraform), until ... do, while ... do
- Flow control,
if, for, while, defer
Advertising: