◽ CentOS

[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하게 다 삭제.

 

푸터바