mkdir : 디렉토리 생성
rm : 파일 삭제
rmdir : (비어있는) 디렉토리 삭제
디렉토리 내에 파일이 존재할 경우 rmdir 명령어로 삭제 불가
디렉토리 하위 모든 파일을 삭제는 -fr 옵션을 이용해서 삭제
rm -fr [디릭토리명]
rm 명령어 옵션
-f, --force ignore nonexistent files and arguments, never prompt
-i prompt before every removal
-I prompt once before removing more than three files, or
when removing recursively; less intrusive than -i,
while still giving protection against most mistakes
--interactive[=WHEN] prompt according to WHEN: never, once (-I), or
always (-i); without WHEN, prompt always
--one-file-system when removing a hierarchy recursively, skip any
directory that is on a file system different from
that of the corresponding command line argument
--no-preserve-root do not treat '/' specially
--preserve-root do not remove '/' (default)
-r, -R, --recursive remove directories and their contents recursively
-d, --dir remove empty directories
-v, --verbose explain what is being done
--help display this help and exit
--version output version information and exit
'Server > linux' 카테고리의 다른 글
[linux] 리눅스 명령어 cp (파일이나 디렉토리 복사) (0) | 2022.09.21 |
---|---|
[linux] asp.net core 리눅스 호스팅 by centos, 아파치(apache) (0) | 2022.08.31 |
[linux] 리눅스 명령어 sudo, su (0) | 2022.08.24 |
[linux] 리눅스 CentOS7 아파치(apache) 웹서버 설치하기 (0) | 2022.02.25 |
[linux] 리눅스 우분투(ubuntu) 아파치(apache) 웹서버 설치 구축(ufw 방화벽 설정) (0) | 2021.09.03 |