Post

Linux cp

1. cp

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

2. 주요 옵션

옵션내용
-f같은 이름의 파일이 있으면 확인하지 않고 덮어쓴다.
-i같은 이름의 파일이 있으면 확인하고 덮어쓴다.
-R디렉토리의 하위 파일을 모두 복사한다.

3. 사용예제

1
2
3
4
5
# source.file을 target.file로 복사한다.
$ cp source.file target.file

# source_dir를 target_dir로 복사한다.
$ cp -R source_dir target_dir

[출처 및 참고]

This post is licensed under CC BY 4.0 by the author.