SCP 명령어 사용법 (리눅스 데이타 GET,PUT 할때사용)

DESCRIPTION:

scp copies files between hosts on a network. It uses ssh(1) for data transfer, and uses the same authentication and provides the same security as ssh. Unlike rcp, scp will ask for passwords or assphrases if they are needed for authentication.

USAGE:

1. 다음은 현재 디렉토리의 'filename'이라는 파일을 'host'의 'loginID'라는 계정으로 접속하여 path라는 경로로 복사하라는 명령이다.

# scp ./filename loginID@host:path/

2. 다음은 'host'의 'loginID'라는 계정으로 접속하여 'path'로 지정된 디렉토리의 'filename'이라는 파일을 자신의 컴퓨터의 현재 디렉토리에 복사하는 명령이다.

# scp loginID@host:path/filename ./

3. 디렉토리 전체를 복사하고 싶으면 -r 옵션을 써주면 된다.

댓글

가장 많이 본 글