[Linux CentOS - (18) ] mv : 파일이동 // rm -rf 폴더 강제 삭제
mv [이동할 파일명] [이동할 위치]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//'touch'는 파일의 날짜정보를 변경하는 명령어로 touch [파일명] 으로 비어있는 파일을 생성할 수 있습니다.
[1]
// 예시1) /home/ 디렉토리에 index.html 을 생성하고 /home/test/ 디렉토리로 옮기시오.
[root@localhost home]# touch /home/index.html
[root@localhost home]# mv /home/index.html /home/test/index.html
//확인
[root@localhost home]# cd /home/test/
[root@localhost test]# ls
index.html
[2]
// 예시2) /home/ 디렉토리에 index.html 을 생성한 후 /home/test/ 디렉토리로 이름을 index2.html로하여 옮기시오.
[root@localhost home]# touch /home/index.html
[root@localhost home]# mv /home/index.html /home/test/index2.html
//확인
[root@localhost home]# cd /home/test/
[root@localhost test]# ls
index2.html
|
rm 최상위폴더 -rfm 최상위폴더 -rf
라고 해 주면 폴더 내의 폴더, 그 안의 내용들까지 강제로 싹 다 지워준다.
-f : 폴더 안에 파일이 있더라도 강제(force) 삭제
-r : 폴더 안에 하위 폴더들이 있고 그 안에 또 폴더가 있고 개판이더라도 recursive하게 다 삭제.
'◽ CentOS' 카테고리의 다른 글
[Linux CentOS - (20) ] scp : 원격 서버의 파일 가져오기 (0) | 2020.05.16 |
---|---|
[Linux CentOS - (19) ] linux tomcat clean (톰캣 클린) (0) | 2020.05.08 |
[Linux CentOS] rpm 관련 오류 옵션 넣어서 강제 처리. (0) | 2020.05.07 |
[Linux CentOS - (17) ] SFTP만 되는 계정 생성 (0) | 2020.04.23 |
[Linux CentOS] "/sbin/nologin"란 무슨 의미인가? (0) | 2020.04.23 |
[Linux CentOS - (16) ] cat : 파일 화면에 출력하기 (0) | 2020.04.13 |
[Linux CentOS - (15) ] 디스크 용량 확인 (df/du) (0) | 2020.04.03 |