PowerShell(파워쉘) 날짜 포맷 변경 및 날짜 계산하기
PowerShell(파워쉘) 날짜 포맷 변경 및 날짜 계산하기 PowerShell Change the date format and calculate the date PowerShell(파워쉘)에서 날짜 포맷 변경 방법과 날짜 계산하는 방법을 알아보겠습니다. Get-Date 명령어를 사용하면 현재시각을 가져올 수 있습니다. 1. 날짜 포맷 변경하기 -Uformat 옵션으로 날짜 출력 포맷을 변경하여 원하는 형태로 출력할 수 있습니다. 명령어: Get-Date -Uformat "test_%Y%m%d.log" 2. 날짜 계산하기 일(Day) 변경은 AddDays(숫자)를 통해 계산할 수 있습니다. 명령어: Get-Date -Date (Get-Date).AddDays(-1) -1을 입력해서 전 날(yesterd..
Windows/PowerShell&Command
2023. 6. 29. 19:30