diff --git a/docs/2023-07-01-pastebin.html b/docs/2023-07-01-pastebin.html index 772e23a..d7f115b 100644 --- a/docs/2023-07-01-pastebin.html +++ b/docs/2023-07-01-pastebin.html @@ -305,6 +305,39 @@ dist
instaloader +login.txt +args.txt +targets.txt
# Result is dst/src
+rsync -avzP src dst
+
+# Result is dst/* with * is from src
+rsync -avzP src/ dst
+ Commonly flags:
+-v
: verbose-z
: compress-P
: enable both --partial
,
+ --progress
to easily resume after interupt
+ -n
: dry runBe careful flags (need dry run if not sure):
+-u
: skip if files in dst is already newer
+ than in src, if you want to sync both ways
+ --delete
: delete files in dst if not exist
+ in src, useful to sync dst with src
+