my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
637 B

3 years ago
  1. # rsync
  2. This plugin adds aliases for frequent [rsync](https://rsync.samba.org/) commands.
  3. To use it add `rsync` to the plugins array in you zshrc file.
  4. ```zsh
  5. plugins=(... rsync)
  6. ```
  7. | Alias | Command |
  8. | ------------------- | ------------------------------------------------ |
  9. | *rsync-copy* | `rsync -avz --progress -h` |
  10. | *rsync-move* | `rsync -avz --progress -h --remove-source-files` |
  11. | *rsync-update* | `rsync -avzu --progress -h` |
  12. | *rsync-synchronize* | `rsync -avzu --delete --progress -h` |