2018년 12월 4일 화요일
Windows 10 DotNet 3.5설치
참조 링크
https://social.technet.microsoft.com/Forums/azure/en-US/8bc98626-42de-4d7e-9fc1-2bc8658cc47b/net-framework-35-installation-fails-w-error-code-0x800f0954?forum=win10itprosetup
관련 사진
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)
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)
2017년 11월 7일 화요일
2017년 10월 26일 목요일
Windows command
1. 폴더 내의 tree 구조를 보고 싶을 때
tree . : 현재 폴더의 구조
tree . /F : file명 까지의 구조
*. 길이가 너무 길면 표현하지 못하므로 root 폴더를 짧은 주소로 만들어서 시작해 본다.
tree . : 현재 폴더의 구조
tree . /F : file명 까지의 구조
*. 길이가 너무 길면 표현하지 못하므로 root 폴더를 짧은 주소로 만들어서 시작해 본다.
피드 구독하기:
글 (Atom)