secu@secu-VirtualBox:~$ ls
copy2.txt test_move 다운로드 바탕화면 사진 템플릿
test2 공개 문서 비디오 음악
# cvf 옵션을 사용해 test로 시작하는 모든 파일 및 디렉터리(test*)를 묶어 test.tar 파일 생성
secu@secu-VirtualBox:~$ tar -cvf test.tar test*
test2/
test2/subdir/
test_move/
test_move/subdir/ ← 묶인 파일 리스트 출력
# 해제 실습을 위해 tar 파일을 test2 디렉터리로 복사
secu@secu-VirtualBox:~$ cp test.tar test2/
secu@secu-VirtualBox:~$ cd test2
secu@secu-VirtualBox:~/test2$ ls
subdir test.tar
# -xvf 옵션을 이용하여 test.tar 파일을 현재 디렉터리에 해제
secu@secu-VirtualBox:~/test2$ tar -xvf test.tar
test2/
test2/subdir/
test_move/
test_move/subdir/
secu@secu-VirtualBox:~/test2$ ls
subdir test.tar test2 test_move
secu@secu-VirtualBox:~/test2$