Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Windows
- plugin
- Quartz
- GIT
- netsh
- Eclipse
- 줄바꿈 문자
- resource
- port
- JavaScript
- find
- tomcat
- bash
- 단축키
- import
- profile
- IntelliJ
- lsof
- maVen
- Mac
- 네트워크
- vscode
- ssh
- Source
- Windows 10
- grep
- web.xml
- xargs
- VirtualBox
- context
Archives
- Today
- Total
develog
[Linux] rsync 원격지 파일 전송 본문
rsync -avR -e ssh (파일 또는 디렉토리) 아이디@IP:경로
rsync -avR -e ssh WebRoot dev01@127.0.0.1:www
data 폴더를 sync
※ -e ssh 는 없어도 동작함
방법1
# /src/my/repo/data 경로의 파일을
# /dst/my/repo/data 경로로 복사한다
rsync -avz -e ssh \
/src/my/repo/data \
my@127.0.0.1:/dst/my/repo/
방법2
# /src/my/repo/data 경로의 파일을
# /dst/my/repo/data 경로로 복사한다
rsync -avz -e ssh \
/src/my/repo/data/* \
my@127.0.0.1:/dst/my/repo/data
'OS & Shell > Linux' 카테고리의 다른 글
[Linux] 원격지 디렉토리 생성 (0) | 2015.01.08 |
---|---|
[Linux] vi 바꾸기 (0) | 2015.01.08 |
[shell] 쉘 스크립트에서 $ 이스케이프 처리 (0) | 2015.01.07 |
[Linux] LD_LIBRARY_PATH 추가 (0) | 2014.11.18 |
[Linux] 환경변수 실행순서 (0) | 2014.11.18 |
Comments