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
- Clean Code
- spark
- Spring
- Storm
- elastic search
- scala
- Spring Boot
- Hbase
- DDD
- 엘라스틱서치
- intellij
- Spring Batch
- docker
- 인텔리J
- Gradle
- SBT
- nginx
- apache storm
- hibernate
- 스프링 배치
- 제주
- hadoop
- Spring XD
- elasticsearch
- 도메인주도설계
- hdfs
- Angular2
- design pattern
- Linux
- Java
Archives
- Today
- Total
목록SCP (1)
욱'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
2015. 2. 27. 11:01