0〜30日前から、さまざまなファイル形式のファイルをどのように活用してコピーするかを考えてみましたrsync
。find
mtime
以下の構文はfind
機能しますがrsync
。
rsync \ --files-from=<(find . -type f \( -name "*.X" -or -name "*.x1" \) -mtime -30) [email protected]:/where/to/put/files
答え1
以下を使用して、SRCパラメータをソースディレクトリとして追加すると.
機能します。
rsync --files-from=<(find . -type f \( -name "*.X" -o -name "*.x1" \) -mtime -30) . [email protected]:/where/to/put/files