#author("2022-12-17T07:07:04+09:00","default:ryuichi","ryuichi")
#author("2022-12-17T07:07:48+09:00","default:ryuichi","ryuichi")
* ループ [#ycc8fc65]

** foreach [#l5141469]

 $nums = @(1,2,3)
 foreach ($n in $nums) { write-host DEBUG: $n }
 
 DEBUG: 1
 DEBUG: 2
 DEBUG: 3

 foreach ($sv in Get-Service | select -First 3) { write-host DEBUG: $sv }

** for [#s4c78d7b]

 for ($i = 0; $i -lt 3; $i++) {
     echo $i
     echo "DEBUG: $i"
 }

** ショートハンド [#y8042a0a]

 1..3 | % { echo "DEBUG: $_" }

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS