मुझे लगता है कि आप उपयोग कर सकते हैं -no-
विकल्प के लिए rsync
करने के लिए नहीं स्वामित्व या फ़ाइलें आप sync'ing रहे हैं की अनुमतियों की प्रतिलिपि बनाएँ।
अंश से rsync मैन पेज
--no-OPTION
You may turn off one or more implied options by prefixing the option
name with "no-". Not all options may be pre‐fixed with a "no-":
only options that are implied by other options (e.g. --no-D,
--no-perms) or have different defaults in various circumstances (e.g.
--no-whole-file, --no-blocking-io, --no-dirs). You may specify
either the short or the long option name after the "no-" prefix (e.g.
--no-R is the same as --no-relative).
For example: if you want to use -a (--archive) but don’t want -o
(--owner), instead of converting -a into -rlptgD, you could specify
-a --no-o (or -a --no-owner).
The order of the options is important: if you specify --no-r -a, the
-r option would end up being turned on, the opposite of -a
--no-r. Note also that the side-effects of the --files-from
option are NOT positional, as it affects the default state of several
options and slightly changes the meaning of -a (see the --files-from
option for more details).
स्वामित्व और अनुमतियां
मैन पेज के माध्यम से मुझे लगता है कि आप इस तरह से कुछ का उपयोग करना चाहते हैं:
$ rsync -avz --no-perms --no-owner --no-group ...
मौजूद फ़ाइलों को हटाने के लिए आप --delete
स्विच का उपयोग कर सकते हैं :
$ rsync -avz --no-perms --no-owner --no-group --delete ....
मुहर
टाइमस्टैम्प के रूप में, मुझे यह बताए बिना इसे रखने का कोई तरीका नहीं दिखता कि आप SOURCE बनाम DEST फ़ाइलों की तुलना कैसे करेंगे। आप rsync
इस स्विच का उपयोग करके टाइमस्टैम्प को अनदेखा करना चाहते हैं :
-I, --ignore-times
Normally rsync will skip any files that are already the same size
and have the same modification timestamp. This option turns off this
"quick check" behavior, causing all files to be updated.
अपडेट करें
टाइमस्टैम्प के लिए, --no-times
आप जो देख रहे हैं वह कर सकते हैं।
>f..T...
जो यह बताता है कि गंतव्य पर फाइलफ्लैग और संशोधन समय निर्धारित किया जा रहा है, जिसे मैं टालने की कोशिश कर रहा हूं।