From f9d056668de90ab5c36020e04f962cba6e4e7464 Mon Sep 17 00:00:00 2001 From: FaultyBranches Date: Sun, 30 Aug 2026 08:51:12 -0500 Subject: [PATCH] feat: Adding back in an rsync "move" that shows progress when moving files and can work across remote systems if need be. --- zsh/zsh_aliases | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/zsh_aliases b/zsh/zsh_aliases index 0960a4a..69d1d6c 100644 --- a/zsh/zsh_aliases +++ b/zsh/zsh_aliases @@ -6,6 +6,7 @@ alias du="du -h -d 1" # Always use human readable format and only for the curren alias k="killall" # Quick killall alias p="ps ux | grep $1" # Quick process search alias n="$EDITOR" # Just open the usual editor +alias mvr="rsync -aP --remove-source-files" # Switch directories alias repos="cd ~/repos/"