mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-25 00:38:20 -05:00
17 lines
297 B
Fish
17 lines
297 B
Fish
#rsync commands
|
|
function rsync-move
|
|
rsync -avz --progress -h --remove-source-files $argv
|
|
end
|
|
|
|
function rsync-synchronize
|
|
rsync -avzu --delete --progress -h $argv
|
|
end
|
|
|
|
function rsync-update
|
|
rsync -avzu --progress -h $argv
|
|
end
|
|
|
|
function rsync-copy
|
|
rsync -avz --progress -h $argv
|
|
end
|