mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 10:15:26 +02:00
13 lines
399 B
Markdown
13 lines
399 B
Markdown
# rmdir
|
|
|
|
> 파일이 없는 디렉토리를 제거합니다.
|
|
> 같이 보기: `rm`.
|
|
> 더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/rmdir-invocation.html>.
|
|
|
|
- 특정 디렉토리 제거:
|
|
|
|
`rmdir {{경로/대상/폴더1 경로/대상/폴더2 ...}}`
|
|
|
|
- 특정 중첩 디렉토리를 재귀적으로 제거:
|
|
|
|
`rmdir -p {{경로/대상/폴더1 경로/대상/폴더2 ...}}`
|