Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
kamehamic (kamehamic@poa.st)'s status on Thursday, 17-Oct-2024 21:44:41 JSTkamehamic @Zergling_man I have a command like that. I use find + rsync to sync files from my VPS to my local machine:
ssh *ssh_arguments* vpsuser@vpshost "find /path -mmin -1200 -print" | rsync -Pvams --files-from=- --no-relative -e "ssh *ssh_arguments*" vpsuser@vpshost:/ "./"
I skipped some arguments but those are the important ones.