मैं एक bash स्क्रिप्ट में कुछ सर्वर और NAS के बीच तालमेल रखने के लिए rsync का उपयोग कर रहा हूं। एक मुद्दा जो मैंने चलाया है, वह उन फ़ाइलों की एक सूची बनाने की कोशिश कर रहा है जो rsync के दौरान से बदल गई हैं।
विचार यह है कि जब मैं rsync चलाता हूं, तो मैं उन फ़ाइलों को आउटपुट कर सकता हूं जो एक टेक्स्ट फ़ाइल में बदल गई हैं - स्मृति में किसी सरणी के लिए अधिक उम्मीद करना - फिर स्क्रिप्ट मौजूद होने से पहले मैं केवल परिवर्तित फ़ाइलों पर एक चाउन चला सकता हूं ।
क्या किसी को इस तरह के कार्य करने का एक तरीका मिला है?
# specify the source directory
source_directory=/Users/jason/Desktop/source
# specify the destination directory
# DO NOT ADD THE SAME DIRECTORY NAME AS RSYNC WILL CREATE IT FOR YOU
destination_directory=/Users/jason/Desktop/destination
# run the rsync command
rsync -avz $source_directory $destination_directory
# grab the changed items and save to an array or temp file?
# loop through and chown each changed file
for changed_item in "${changed_items[@]}"
do
# chown the file owner and notify the user
chown -R user:usergroup; echo '!! changed the user and group for:' $changed_item
done
-i
आइटम के लिए भी , लेकिन कुछ और ट्विस्ट के साथ ...