욱'S 노트

Linux - scp 명령어 본문

Programming/Linux

Linux - scp 명령어

devsun 2015. 2. 27. 11:01

scp는 보안, 암호화된 네트워크 연결로 파일을 복사한다.


scp는 secure copy의 약자이다. cp라 매우 유사해서 이해하기 쉽다.


다음과 같이 사용하면 된다.


scp /home/stacy/images/image*.jpg stacy@myhost.com:/home/stacy/archive


서버 myhost로 stacy 유저로 로그인하여  /home/stacy/archive 디렉토리에 이미지 파일을 복사한다는 의미이다.


그리고 반대로 카피를 해온다면 다음과 같이 표현할 수 있다.


scp stacy@myhost.com:/home/stacy/archive/image*.jpg /home/stacy/downloads


옵션은 매뉴얼을 참조하도록 하자.

'Programming > Linux' 카테고리의 다른 글

Linux - Yum  (0) 2015.06.23
Linux - 심볼릭 링크, symbolic link  (0) 2015.03.19
alias 명령어  (0) 2015.02.26
Homebrew  (0) 2015.01.29
sudo 명령어  (0) 2014.12.31
Comments