1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/windows/expand.md
코드싸이 60276104db
windows/*: add and update Korean translation (#14641)
Co-authored-by: Chooooo <contact@choo.ooo>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-11-05 20:21:01 +01:00

24 lines
863 B
Markdown

# expand
> Windows Cabinet 파일 압축 해제.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/expand>.
- 단일 파일 Cabinet 파일을 지정한 디렉토리로 압축 해제:
`expand {{경로\대상\파일.cab}} {{경로\대상\디렉토리}}`
- 소스 Cabinet 파일 내 파일 목록 표시:
`expand {{경로\대상\파일.cab}} {{경로\대상\디렉토리}} -d`
- Cabinet 파일의 모든 파일 압축 해제:
`expand {{경로\대상\파일.cab}} {{경로\대상\디렉토리}} -f:*`
- Cabinet 파일에서 특정 파일 압축 해제:
`expand {{경로\대상\파일.cab}} {{경로\대상\디렉토리}} -f:{{경로\대상\파일}}`
- 압축 해제 시 디렉토리 구조를 무시하고 단일 디렉토리에 추가:
`expand {{경로\대상\파일.cab}} {{경로\대상\디렉토리}} -i`