2018년 3월 9일 금요일

Folder 자동으로 생성, 번호순으로

참조: Link

FOR /L %N IN (1,1,500) DO md "JiraIssue_%N"

요약
FOR /L 는 기본 키워드로서 For Loop를 돌려주고
이때 N은 변수 명으로 1부터 1씩 500까지 번호를 돌려주면서 폴더 만들고(md) 그때의 이름은 JiraIssue_%N 이다.

---

FOR /L
Conditionally perform a command for a range of numbers.

Syntax 
      FOR /L %%parameter IN (start,step,end) DO command

Key
   start       : The first number 
   step        : The amount by which to increment the sequence
   end         : The last number

   command     : The command to carry out, including any
                 command-line parameters.

   %%parameter : A replaceable parameter:
                 in a batch file use %%G (on the command line %G)

댓글 없음:

댓글 쓰기