summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/rsync
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/oh-my-zsh/plugins/rsync')
-rw-r--r--zsh/oh-my-zsh/plugins/rsync/README.md16
-rw-r--r--zsh/oh-my-zsh/plugins/rsync/rsync.plugin.zsh4
2 files changed, 20 insertions, 0 deletions
diff --git a/zsh/oh-my-zsh/plugins/rsync/README.md b/zsh/oh-my-zsh/plugins/rsync/README.md
new file mode 100644
index 0000000..032ee7f
--- /dev/null
+++ b/zsh/oh-my-zsh/plugins/rsync/README.md
@@ -0,0 +1,16 @@
+# rsync
+
+This plugin adds aliases for frequent [rsync](https://rsync.samba.org/) commands.
+
+To use it add `rsync` to the plugins array in you zshrc file.
+
+```zsh
+plugins=(... rsync)
+```
+
+| Alias | Command |
+| ------------------- | ------------------------------------------------ |
+| *rsync-copy* | `rsync -avz --progress -h` |
+| *rsync-move* | `rsync -avz --progress -h --remove-source-files` |
+| *rsync-update* | `rsync -avzu --progress -h` |
+| *rsync-synchronize* | `rsync -avzu --delete --progress -h` |
diff --git a/zsh/oh-my-zsh/plugins/rsync/rsync.plugin.zsh b/zsh/oh-my-zsh/plugins/rsync/rsync.plugin.zsh
new file mode 100644
index 0000000..1a3bb4c
--- /dev/null
+++ b/zsh/oh-my-zsh/plugins/rsync/rsync.plugin.zsh
@@ -0,0 +1,4 @@
+alias rsync-copy="rsync -avz --progress -h"
+alias rsync-move="rsync -avz --progress -h --remove-source-files"
+alias rsync-update="rsync -avzu --progress -h"
+alias rsync-synchronize="rsync -avzu --delete --progress -h"