diff options
author | Marvin Borner | 2019-03-05 01:09:01 +0100 |
---|---|---|
committer | Marvin Borner | 2019-03-05 01:09:01 +0100 |
commit | 55457187d18221e76bd12f0fb2cfab65c49b92fb (patch) | |
tree | 8db042d2d80710d54100c2709ad4332153ac848a /.oh-my-zsh/plugins/rsync |
Initial commit
Diffstat (limited to '.oh-my-zsh/plugins/rsync')
-rw-r--r-- | .oh-my-zsh/plugins/rsync/README.md | 16 | ||||
-rw-r--r-- | .oh-my-zsh/plugins/rsync/rsync.plugin.zsh | 4 |
2 files changed, 20 insertions, 0 deletions
diff --git a/.oh-my-zsh/plugins/rsync/README.md b/.oh-my-zsh/plugins/rsync/README.md new file mode 100644 index 0000000..032ee7f --- /dev/null +++ b/.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/.oh-my-zsh/plugins/rsync/rsync.plugin.zsh b/.oh-my-zsh/plugins/rsync/rsync.plugin.zsh new file mode 100644 index 0000000..1a3bb4c --- /dev/null +++ b/.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" |