출처
설명
SSH통신을 기반으로 파일을 전송합니다. SCP는 Secure Copy의 약자입니다.
주요 옵션
옵션 | 내용 |
---|---|
-r | 복수의 파일을 전송할 때 사용합니다. |
사용예제
Remote to Local
# 원격 파일 복사
$ scp user@127.0.0.1:/reomote/file/path /local/file/path
# 원격 디렉토리 복사
$ scp -r user@127.0.0.1:/reomote/directory/path /local/directory/path
Local to Remote
# 로컬 파일 복사
$ scp /local/file/path user@127.0.0.1:/reomote/file/path
# 로컬 디렉토리 복사
$ scp -r /local/directory/path user@127.0.0.1:/reomote/directory/path
Remote to Remote
$ scp user@127.0.0.1:/reomote/file/path user@127.0.0.2:/reomote/file/path