rsync 사용 중 질문이있습니다.

shwezarl의 이미지

rsync -av ./원본 IP::/해당경로 이런식으로 rsync 를이용하여 서버에 데이터를 올리고있습니다..

서버는 들어가서 사용자로 확인할수는 있지만 지우거나 하지못합니다..그래서 지우는거나 생성하는것도 원본경로에서 만들어놓고 rsync로

날립니다.

예) 1. 원본에 test디렉토리 밑에 모든파일을 rsync 날림..

2. 원본에 test와다른경로의 test2디렉토리 밑에 모든파일을 rsync 날림..

3. rsync 들어오는 서버의 경로는 동일 합니다.. 동일 경로에 test test2 이렇게 리스트됩니다.

여기서 질문입니다.

rsync 추가 하는과정에서 오타를 쳐서 대상디렉토리를 tast로 입력하여 서버에 tast라는 디렉토리가 생김.

서버의 동일경로에 test test2 tast 이렇게 리스트됨..

tast 밑의 파일들은 빈디렉토리를 만들어서 --delete로 옵션줘서 지울수있었습니다..

근데 tast디렉토리 자체를 지워야하는데.. test test2 의 디렉토리는 용량상 벌써 지운상태입니다..

서버에서 test test2를 지우지않고 rsync로 tast디렉토리를 지울수있는 방법이 있을까요??

이상 초보자의 질문이었습니다..ㅠㅠ

제가 오타로 사고를쳐서.. 고수님들 방법좀 부탁드립니다..

qiiiiiiiip의 이미지

test test2 tast 를 포함하는 상위디렉토리에 대해서 rsync --delete
를 거는 방법이 제일 간단할 것 같습니다..

전체에 대해서 rsync를 걸기가 부담스러우면

일단 remote 것을 rsync로 로컬로 받은다음에 tast를 지우고,
해당 디렉토리를 remote로 rsync --delete를 걸면 될듯..

qiiiiiiiip의 이미지

아.. 이렇게 하면 되네요..

rsync -rv --delete --include=tast '--exclude=*' localpath/ remotepath

http://stackoverflow.com/questions/505289/using-rsync-to-delete-a-single-file

미리 -n 으로 테스트해보는 것을 추천..

$ rsync -rv --delete  --include=tast '--exclude=*' -n local/ remote
sending incremental file list
deleting tast/
 
sent 37 bytes  received 21 bytes  116.00 bytes/sec
total size is 0  speedup is 0.00 (DRY RUN)
shwezarl의 이미지

대박!!! 이런것까지는 전혀 생각못했는데...혹시나하는 마음에 질문한건데 정말 감사합니다..

man 페이지를 아무리 봐도 ...영어로 되어있고 단순하게 써있어서 몰랏는데..

정말 감사합니다..^^

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.