changeset 913:107bf2430602

update with future work + links
author Jeff Hammel <k0scist@gmail.com>
date Mon, 27 May 2024 13:59:46 -0700
parents 5d9c08d2a090
children 016d27ca39e4
files bin/quicksilver.sh
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/bin/quicksilver.sh	Wed May 01 14:39:53 2024 -0700
+++ b/bin/quicksilver.sh	Mon May 27 13:59:46 2024 -0700
@@ -7,8 +7,14 @@
 # https://stackoverflow.com/questions/1602324/how-do-i-synchronize-in-both-directions
 # https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories
 
+# TODO: loop over directories?
 SRC="${HOME}/docs"
 
+# TODO?: add -zP flags; from
+# https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories
+# If you’re transferring files that have not already been compressed, like text files, you can reduce the network transfer by adding compression with the -z option:
+# The -P flag is also helpful. It combines the flags --progress and --partial. This first flag provides a progress bar for the transfers, and the second flag allows you to resume interrupted transfers:
+
 mkdir -p "${SRC}"
 rsync -au k0s.org:"${SRC}"/ "${SRC}"
 rsync -au "${SRC}"/ k0s.org:"${SRC}"