対象ファイルのリストを読み込んでrsyncする
やりたいこと
例えばこんなディレクトリがあったとする。
parent/
├── child1
│ ├── grandchild1
│ └── grandchild2
└── child2
├── grandchild1
└── grandchild2
このうち
parent/
├── child1
│ └── grandchild1
└── child2
└── grandchild2
だけを取り出したい。
やり方
rsyncしたい対象のファイルが書かれたリストを用意する
parent/child1/grandchild1
parent/child2/grandchild2
--files-from=[ファイルリストの絶対パス]
を使ってrsync
rsync --files-from=PATH_TO_FILE SOURCE DESTINATION
ファイルの中身はSOURCE
からの相対パスになることに注意。例えばparent
がカレントディレクトリの直下にある場合はこうなる
rsync --files-from=file_list.txt . destination
# 結果
destination/
└── parent
├── child1
│ └── grandchild1
└── child2
└── grandchild2
Author And Source
この問題について(対象ファイルのリストを読み込んでrsyncする), 我々は、より多くの情報をここで見つけました https://qiita.com/863/items/cedcd839b329dce28116著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .