Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- spark
- Clean Code
- 엘라스틱서치
- Spring XD
- scala
- intellij
- elasticsearch
- 도메인주도설계
- Hbase
- design pattern
- Spring
- Angular2
- Spring Batch
- hdfs
- 스프링 배치
- Spring Boot
- hadoop
- 제주
- nginx
- Java
- DDD
- SBT
- Domain Driven Design
- Storm
- docker
- Gradle
- hibernate
- elastic search
- apache storm
- Linux
Archives
- Today
- Total
욱'S 노트
Linux - scp 명령어 본문
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