Browse Source

Merge pull request #431 from meh/rsync-plugin

Add rsync plugin.
Robby Russell 12 years ago
parent
commit
badc3eb6ce
1 changed files with 4 additions and 0 deletions
  1. 4 0
      plugins/rsync/rsync.plugin.zsh

+ 4 - 0
plugins/rsync/rsync.plugin.zsh

@@ -0,0 +1,4 @@
+alias rsync-copy="rsync -av --progress -h"
+alias rsync-move="rsync -av --progress -h --remove-source-files"
+alias rsync-update="rsync -avu --progress -h"
+alias rsync-synchronize="rsync -avu --delete --progress -h"