rsync มี:
--max-size=SIZE don't transfer any file larger than SIZE
พร้อมเพรียงมีตัวเลือกที่คล้ายกันหรือไม่
rsync มี:
--max-size=SIZE don't transfer any file larger than SIZE
พร้อมเพรียงมีตัวเลือกที่คล้ายกันหรือไม่
คำตอบ:
คุณสามารถใช้-copythreshold
ตัวเลือก จากธงช่วยเหลือพร้อมเพรียง:
-copythreshold n use copyprog on files bigger than this (if >=0, in Kb)
คุณสามารถสร้างโปรแกรมจำลอง / สคริปต์ที่ไม่ทำอะไรเลย โดยปกติฉันเชื่อว่าคุณจะระบุ rsync ด้วยตัวเลือกพิเศษเป็น copyprog แต่ถ้าคุณไม่ต้องการคัดลอกอะไร copyprog ไม่ควรทำอะไร
# ~/.unison/myprofile.prf
# Skip files larger than 200 megabytes
# Use copyprog with files larger than XXX Kb
copythreshold = 200000
# rsync will skip files that are too large
copyprog = rsync --inplace --compress ""--max-size=200M""
copyprogrest = rsync --partial --inplace --compress ""--max-size=200M""
ดูเพิ่มเติมที่ maxsizethreshold
พารามิเตอร์สำหรับสิ่งนี้ ตั้งค่าในไฟล์โครงการ prf หรือเป็นตัวเลือกบรรทัดคำสั่งเช่น 100Kb
unison project -maxsizethreshold 100