반응형
-
Get-Content (파일 읽기)
Get-Content "C:\TEST.txt"
-
Set-Content (파일 출력)
Set-Content "C:\TEST.txt" "저장할 파일 내용"
-
파이프라인을 이용한 파일 저장
ls "C:\" | Set-Content "C:\TEST.txt"
-
Out-File 명령어를 이용한 파일 저장 (Set-Content와 다르게 모든 값이 저장)
ls "C:\" | Out-File "C:\TEST.txt"
반응형
'Windows 10 > PowerShell' 카테고리의 다른 글
PowerShell : Registry (0) | 2019.08.21 |
---|---|
PowerShell : Get-ChildItem (ls), 응용 (0) | 2019.07.14 |
PowerShell : 기본 명령어 (0) | 2019.06.16 |
PowerShell : Alias (0) | 2019.06.15 |
PowerShell : 특수문자 (0) | 2019.06.15 |