반응형
1. test.org 파일을 test.txt로 복사
[root@linux1 ch2]# ls
data1 temp test.org
[root@linux1 ch2]# cp test.org test.txt
[root@linux1 ch2]# ls
data1 temp test.org test.txt
[root@linux1 ch2]#
2. backup 디렉토리 생성
[root@linux1 ch2]# mkdir backup
[root@linux1 ch2]# ls
backup data1 temp test.org test.txt
[root@linux1 ch2]#
3. text.txt 파일을 backup 디렉토리로 이동
[root@linux1 ch2]# mv test.txt backup/
[root@linux1 ch2]# ls
backup data1 temp test.org
[root@linux1 ch2]# cd backup/
[root@linux1 backup]# ls
test.txt
4. backup 디렉토리의 이름을 work로 변경
[root@linux1 ch2]# mv backup work
[root@linux1 ch2]# ls
data1 temp test.org work
[root@linux1 ch2]#
5. rmdir 명령으로 work 디렉토리 삭제 여부 확인
[root@linux1 ch2]# rmdir work
rmdir: failed to remove 'work': 디렉터리가 비어있지 않음
[root@linux1 ch2]#
6. rm 명령으로 work 디렉토리 삭제
[root@linux1 ch2]# rm -rvf work
removed 'work/test.txt'
removed directory 'work'
[root@linux1 ch2]# ls
data1 temp test.org
[root@linux1 ch2]#
|
반응형
'CentOS > Study' 카테고리의 다른 글
[리눅스]명령줄 액세스 요점정리 (0) | 2021.07.18 |
---|---|
[리눅스]RHEL(Red Hat Enterprise Linux) 시작하기 요점정리 (0) | 2021.07.18 |
[실습]혼자해보기 - 파일 내용 출력하기 (0) | 2020.09.18 |
[이론]디렉터리와 파일 사용하기 연습문제 - 4 (0) | 2020.09.14 |
[이론]디렉터리와 파일 사용하기 연습문제 - 3 (0) | 2020.09.14 |