Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 |
Tags
- Java
- vim
- FileChannel
- 7z
- Docker Compose
- RandomAccessFile
- cli
- html canvas
- Webpack
- glm-ocr
- dockerfile
- config
- path
- podman compose
- Ollama
- curl
- docker
- getting started
- .dockerignore
- io
- React
- PowerShell
- podman
- 시작하기
- vscode
- Typescript
- tauri
- 절대경로
- qwen3-coder-next
- Vite
Archives
- Today
- Total
목록PowerShell (1)
워로디스
PowerShell 현재 날짜 포맷팅
PowerShell에서는 Get-Date cmdlet을 사용하고 -Format 옵션으로 원하는 형식을 지정합니다.1. 가장 기본적인 방법Get-Date -Format "yyyy-MM-dd"예시 출력2026-03-072. 자주 사용하는 포맷 예시Get-Date -Format "yyyyMMdd"20260307Get-Date -Format "yyyy-MM-dd HH:mm:ss"2026-03-07 20:15:32Get-Date -Format "yyyyMMdd_HHmmss"20260307_201532로그 파일 이름 등에 많이 쓰는 형태입니다.3. 변수에 저장$date = Get-Date -Format "yyyyMMdd"$date202603074. .NET 방식 (조금 더 일반적인 패턴)PowerShell은 내부적..
정리/PowerShell
2026. 3. 8. 17:29
