Post

Linux scp

1. scp

SSH통신을 기반으로 파일을 전송한다. SCP는 Secure Copy의 약자이다.

2. 주요 옵션

옵션설명
-r복수의 파일을 전송할 때 사용

3. 사용예제

1) Remote to Local

1
2
3
4
# 원격 파일 복사
$ 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

2) Local to Remote

1
2
3
4
# 로컬 파일 복사
$ 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

3) Remote to Remote

1
$ scp user@127.0.0.1:/reomote/file/path user@127.0.0.2:/reomote/file/path

[출처 및 참고]

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