From 3c82cc94b42c4063c665da3cd6860076212b5036 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Fri, 3 Oct 2025 19:30:54 -0600 Subject: [PATCH] Update Scripts/Powershell/General Purpose/rClone.md --- Scripts/Powershell/General Purpose/rClone.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Powershell/General Purpose/rClone.md b/Scripts/Powershell/General Purpose/rClone.md index e03fddb..4e87ab7 100644 --- a/Scripts/Powershell/General Purpose/rClone.md +++ b/Scripts/Powershell/General Purpose/rClone.md @@ -34,7 +34,7 @@ The following commands illustrate how to use bisync to synchronize a local folde - If the remote file was newer, it deletes the older local file and overwrites it with the newer remote file, - If the local file was newer, it deletes the older remote file and overwrites it with the newer local file ```powershell - .\rclone.exe bisync "Local" "Remote" --create-empty-src-dirs --conflict-resolve newer --conflict-loser delete --compare size,modtime,checksum --resilient --log-level ERROR --drive-skip-gdocs --fix-case --force --progress + .\rclone.exe bisync "Local" "Remote" --create-empty-src-dirs --conflict-resolve newer --conflict-loser delete --compare size,modtime,checksum --resilient --log-level ERROR --drive-skip-gdocs --fix-case --force --progress --exclude="**/*.lnk ``` === "Repairing a Broken BiSync" @@ -43,5 +43,5 @@ The following commands illustrate how to use bisync to synchronize a local folde The only core difference between this command and the "Subsequent Sync" command, is the addition of `--resync` to the argument list. ```powershell - .\rclone.exe bisync "Local" "Remote" --create-empty-src-dirs --conflict-resolve newer --conflict-loser delete --compare size,modtime,checksum --resilient --log-level ERROR --drive-skip-gdocs --fix-case --force --progress --resync + .\rclone.exe bisync "Local" "Remote" --create-empty-src-dirs --conflict-resolve newer --conflict-loser delete --compare size,modtime,checksum --resilient --log-level ERROR --drive-skip-gdocs --fix-case --force --progress --exclude="**/*.lnk --resync ``` \ No newline at end of file