[root@centos7 test]# tar cvf backup.tar backup ## backup이란 파일을 backup.tar로 압축 backup [root@centos7 test]# ls backup backup.tar ## backup.tar 생성완료 [root@centos7 test]# touch lint.txt joon.c ## lint.txt joon.c 파일생성 [root@centos7 test]# tar rvf backup.tar lint.txt joon.c ## backup.tar파일에 추가로 lin.txt와 joon.c 압축 lint.txt joon.c [root@centos7 test]# tar tvf backup.tar ## 제대로 추가되어 묶였는지 확인 -rw-r--r-- root/root 0 2022-03-07 16:51 backup -rw-r--r-- root/root 0 2022-03-07 16:52 lint.txt -rw-r--r-- root/root 0 2022-03-07 16:52 joon.c
[root@centos7 test]# tar cvf backup.tar backup ## backup이란 파일을 backup.tar로 압축
backup
[root@centos7 test]# ls
backup backup.tar ## backup.tar 생성완료
[root@centos7 test]# touch lint.txt joon.c ## lint.txt joon.c 파일생성
[root@centos7 test]# tar rvf backup.tar lint.txt joon.c ## backup.tar파일에 추가로 lin.txt와 joon.c 압축
lint.txt
joon.c
[root@centos7 test]# tar tvf backup.tar ## 제대로 추가되어 묶였는지 확인
-rw-r--r-- root/root 0 2022-03-07 16:51 backup
-rw-r--r-- root/root 0 2022-03-07 16:52 lint.txt
-rw-r--r-- root/root 0 2022-03-07 16:52 joon.c