diff --git a/Scripts/Powershell/General Purpose/rClone.md b/Scripts/Powershell/General Purpose/rClone.md index 4e87ab7..7955137 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 --exclude="**/*.lnk + .\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 --exclude="**/*.lnk --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