มีวิธีง่ายๆในการทำให้โฟลเดอร์ซิงค์กับรายชื่อไดเรกทอรีผ่าน HTTP หรือไม่?
แก้ไข :
ขอบคุณสำหรับเคล็ดลับด้วย wget! ฉันสร้างเชลล์สคริปต์และเพิ่มเป็นงาน cron:
remote_dirs=( "http://example.com/" "…") # Add your remote HTTP directories here
local_dirs=( "~/examplecom" "…")
for (( i = 0 ; i < ${#local_dirs[@]} ; i++ )) do
cd "${local_dirs[$i]}"
wget -r -l1 --no-parent -A "*.pdf" -nd -nc ${remote_dirs[$i]}
done
# Explanation:
# -r to download recursively
# -l1 to include only one directory depth
# --no-parent to exclude parent directories
# -A "*.pdf" to accept only .pdf files
# -nd to prevent wget to create directories for everything
# -N to make wget to download only new files
แก้ไข 2:
ตามที่ระบุไว้ดังต่อไปนี้หนึ่งยังสามารถใช้--mirror
( -m
) -r -N
ซึ่งเป็นชวเลขสำหรับ
ดีใจที่มันช่วย คุณยอมรับคำตอบที่คุณรู้สึกว่าช่วยได้ดีที่สุดหรือไม่
—
George M