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
- docker
- React
- .dockerignore
- PowerShell
- qwen3-coder-next
- tauri
- Webpack
- FileChannel
- io
- getting started
- Ollama
- 시작하기
- dockerfile
- Typescript
- Java
- glm-ocr
- path
- Docker Compose
- vscode
- podman
- 절대경로
- vim
- cli
- podman compose
- curl
- 7z
- Vite
- config
- RandomAccessFile
- html canvas
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
