आश्चर्यजनक रूप से 6 वर्षों में कोई जवाब नहीं -i
विकल्प का उपयोग करता है या अच्छा उत्पादन देता है इसलिए यहां मैं जाऊंगा:
TLDR - बस मुझे कमांड दिखाओ
rsync -rin --ignore-existing "$LEFT_DIR"/ "$RIGHT_DIR"/|sed -e 's/^[^ ]* /L /'
rsync -rin --ignore-existing "$RIGHT_DIR"/ "$LEFT_DIR"/|sed -e 's/^[^ ]* /R /'
rsync -rin --existing "$LEFT_DIR"/ "$RIGHT_DIR"/|sed -e 's/^/X /'
आउटपुट को समझना
यहाँ आउटपुट का एक उदाहरण है:
L file-only-in-Left-dir
R file-only-in-right-dir
X >f.st...... file-with-dif-size-and-time
X .f...p..... file-with-dif-perms
हर पंक्ति के पहले वर्ण पर ध्यान दें:
L
/ R
इसका मतलब है कि फ़ाइल / dir केवल L
eft या R
ight dir पर दिखाई देती है ।
X
उस फ़ाइल को दोनों पक्षों पर दिखाई देता है, लेकिन एक ही नहीं है (। जो मामले में अगले 11 वर्ण आप और अधिक जानकारी देने के का मतलब है s
, t
और p
में मतभेद को दर्शाती रों ize, टी IME और पी - कोशिश अधिक जानकारी के लिए क्रमश: ermissions man rsync
और के लिए खोज --itemize-changes
) ।
अतिरिक्त विकल्प आप उपयोग करना चाह सकते हैं
यदि आप फ़ाइलों के स्वामी / समूह / अनुमतियों की तुलना करना चाहते हैं, तो क्रमशः विकल्प -o
/ -g
/ जोड़ दें -p
। अंत में ध्यान दें कि डिफ़ॉल्ट रूप से rsync दो फ़ाइलों को समान मानता है यदि उनके पास समान नाम, समय और आकार है। यह बहुत तेज़ है और अधिकांश समय पर्याप्त से अधिक है, लेकिन यदि आप 100% सुनिश्चित करना चाहते हैं तो -c
एक ही नाम, समय और आकार के साथ फ़ाइलों की सामग्री की तुलना भी करें।
TLDR - बस मुझे कॉल करने के लिए एक स्क्रिप्ट दें
यही पर है। इसे इस तरह बुलाओ
diff-dirs Left_Dir Right_Dir [options]
ऊपर दिए गए सभी विकल्प अनुभाग में "अतिरिक्त विकल्प जिन्हें आप उपयोग करना चाहते हैं" यहां भी लागू हो सकते हैं।
#!/bin/bash
# Compare two directories using rsync and print the differences
# CAUTION: options MUST appear after the directories
#
# SYNTAX
#---------
# diff-dirs Left_Dir Right_Dir [options]
#
# EXAMPLE OF OUTPUT
#------------------
# L file-only-in-Left-dir
# R file-only-in-right-dir
# X >f.st...... file-with-dif-size-and-time
# X .f...p..... file-with-dif-perms
#
# L / R mean that the file/dir appears only at the `L`eft or `R`ight dir.
#
# X means that a file appears on both sides but is not the same (in which
# case the next 11 characters give you more info. In most cases knowing
# that s,t,T and p depict differences in Size, Time and Permissions
# is enough but `man rsync` has more info
# (look at the --itemize-changes option)
#
# OPTIONS
#---------
# All options are passed to rsync. Here are the most useful for the purpose
# of directory comparisons:
#
# -c will force comparison of file contents (otherwise only
# time & size is compared which is much faster)
#
# -p/-o/-g will force comparison of permissions/owner/group
if [[ -z $2 ]] ; then
echo "USAGE: $0 dir1 dir2 [optional rsync arguments]"
exit 1
fi
set -e
LEFT_DIR=$1; shift
RIGHT_DIR=$1; shift
OPTIONS="$*"
# Files that don't exist in Right_Dir
rsync $OPTIONS -rin --ignore-existing "$LEFT_DIR"/ "$RIGHT_DIR"/|sed -e 's/^[^ ]* /L /'
# Files that don't exist in Left_Dir
rsync $OPTIONS -rin --ignore-existing "$RIGHT_DIR"/ "$LEFT_DIR"/|sed -e 's/^[^ ]* /R /'
# Files that exist in both dirs but have differences
rsync $OPTIONS -rin --existing "$LEFT_DIR"/ "$RIGHT_DIR"/|sed -e 's/^/X /'
यह कैसे काम करता है?
हम rsync को इस तरह बुला रहे हैं:
rsync -rin ...
हम हर फाइल के लिए आउटपुट की एक लाइन प्रिंट करने के लिए rsync को बताने के लिए -i
( --itemize-changes
) का उपयोग करते हैं जिसमें दो निर्देशिकाओं के बीच किसी भी अंतर के बारे में जानकारी होती है। हमें -n
rsync के सामान्य व्यवहार को दबाने की आवश्यकता है (जो फ़ाइलों को कॉपी / डिलीट करके दो डायर को सिंक करने का प्रयास करना है)। हमें -r
सभी फ़ाइलों / उप-डायरियों के लिए पुनरावर्ती रूप से काम करने की भी आवश्यकता है।
हम तीन बार rsync कहते हैं:
पहली कॉल : प्रिंट फ़ाइलें जो Dir_B में मौजूद नहीं हैं। हमें उन --ignore-existing
फ़ाइलों को अनदेखा करने की आवश्यकता है जो दोनों तरफ मौजूद हैं।
rsync -rin --ignore-existing $DIR_A/ $DIR_B/
2 कॉल : बिल्कुल के रूप में पहले, लेकिन हम DIR_A / DIR_B के आदेश स्वैप।
तीसरा कॉल : अंत में हम --existing
केवल उन फाइलों की जांच करते हैं, जो दोनों dirs में दिखाई देती हैं।
rsync -rin --existing $DIR_A/ $DIR_B/