개인 자료 정리 홈페이지 입니다.

Note > 리눅스 명령어 모음cp - copy files and directoriesBy a3040, Published on Invalid Date

cp

 파일이나 디렉토리를 복사하는 명령어입니다. 


파일 복사

cp index.html public_html/

index.html 파일을 public_html 디렉토리에 복사합니다.


디렉토리 복사

cp -r sourcedir/ targetdir/

 sourcedir 디렉토리와 그 하위 파일 및 디렉토리를 모두 targetdir 디렉토리로 복사합니다. -r 옵션은 디렉토리를 재귀적으로 복사하는 옵션입니다.


파일 덮어쓰기

cp -f sourcefile.txt targetdir/


파일 복사 시 원본 파일의 속성 유지

cp -p sourcefile.txt targetdir/


-r 옵션은 디렉토리를 재귀적으로 복사하며, 

-f 옵션은 파일을 덮어쓰기합니다. 

-l 옵션은 링크 파일을 생성하며, 

-p 옵션은 파일의 속성을 유지하면서 복사합니다.



파일을 생성:touch robots.txt index.html

public_html로 복사: cp robots.txt index.html public_html/

잘 복사됐나?:ls -la public_html/