2016년 5월 25일 수요일

리눅스 디렉토리 복사하기

리눅스에서 디렉토리를 복사할때 그냥

cp 디렉토리1 디렉토리2 하면

[root@conoha ~]# mkdir testdir
[root@conoha ~]# cp testdir testdir2
cp: omitting directory ‘testdir’

위와 같이 에러가 발생한다.

이럴때는 -r 옵션을 주면 된다.

[root@conoha ~]# cp -r testdir testdir2

[root@conoha ~]# rmdir testdir1 testdir2


댓글 없음:

댓글 쓰기