Difference between revisions of "For"

From wikieduonline
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 20: Line 20:
  
 
* [[Ansible]]: <code>[[with_items:]]</code>
 
* [[Ansible]]: <code>[[with_items:]]</code>
 +
 +
=== Powershell ===
 +
[[for]] ($num = 1 ; $num -le 10 ; $num++){    "I count $num"}
  
 
== Terraform ==
 
== Terraform ==
Line 37: Line 40:
 
== See also ==
 
== See also ==
 
* {{for}}
 
* {{for}}
* {{Bash}}
+
* {{flow control}}
* {{programming}}
 
 
 
  
 
[[Category:Programming]]
 
[[Category:Programming]]

Latest revision as of 16:19, 24 August 2023

wikipedia:for

Examples[edit]

 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[edit]

for i in range(5):
  do_some_function()

Powershell[edit]

for ($num = 1 ; $num -le 10 ; $num++){    "I count $num"}

Terraform[edit]

Related terms[edit]

See also[edit]

Advertising: