Powershell for loop 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 11월 20, 2016 for ($i=1; $i -le 10; $i++){ mkdir $i} : make folders whose name is from 1 to 10 Thanks, JF 자세한 내용 보기
'For' statement in Powershell 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 1월 25, 2015 Fundamental syntax for (initial; condition; repeat) { command block } Example: >>> for ($i=1, $i -le 10; $i++){ Command block } 자세한 내용 보기