secu@secu-VirtualBox:~$ ls
copy.txt 공개 문서 비디오 음악
copy2.txt 다운로드 바탕화면 사진 템플릿
# 하위 디렉터리 포함한 테스트 디렉터리 생성
secu@secu-VirtualBox:~$ mkdir -p test/subdir
secu@secu-VirtualBox:~$ ls
copy.txt test 다운로드 바탕화면 사진 템플릿
copy2.txt 공개 문서 비디오 음악
# 디렉터리 복사를 시도했으나, -r 옵션을 주지 않아 실패
secu@secu-VirtualBox:~$ cp test test2
cp: -r not specified; omitting directory 'test'
# -r 옵션을 이용하여 디렉터리 복사 성공
secu@secu-VirtualBox:~$ cp -r test test2
secu@secu-VirtualBox:~$ ls
copy.txt test 공개 문서 비디오 음악
copy2.txt test2 다운로드 바탕화면 사진 템플릿