-

cp명령어 본문

리눅스

cp명령어

lingi04 2017. 10. 19. 21:30

cp

파일이나 디렉토리를 복사한다.

cp [복사할 파일 또는 디렉토리] [붙여넣기 할 장소(디렉토리) + (파일명)]

ex) cp /home/testdir/test /home/testdir2/test2


만약 test가 디렉토리라면 오류가 날 수도 있다.

이렇다면 r옵션을 사용해 아래와 같이 사용한다.

cp -r /home/testdir/test /home/testdir2/test2


파일의 소유자, 그룹, 권한, 시간 등 파일의 속성을 그대로 복사하고 싶다면

cp -pr /home/testdir/test /home/testdir2/test2 와 같이 사용!

'리눅스' 카테고리의 다른 글

Virtualbox - Centos6 게스트확장  (0) 2018.04.08
install gcc without internet connection!! (centos7)  (0) 2017.10.17
Comments