canadaduane, 1 year ago ChatGPT suggests the following: Run tmux rsync -naP --exclude-from=rsync-homedir-local.txt /home/$USER/ $BACKUPDIR/ | tee /tmp/rsync_output.txt Ctrl+B % # splits screen vertically Ctrl+B right-arrow-key # moves to right split tail -f /tmp/rsync_output.txt | grep denied Not quite a one-liner, but I can see how tmux is a big help here.
ChatGPT suggests the following:
rsync -naP --exclude-from=rsync-homedir-local.txt /home/$USER/ $BACKUPDIR/ | tee /tmp/rsync_output.txt
tail -f /tmp/rsync_output.txt | grep denied
Not quite a one-liner, but I can see how tmux is a big help here.