scp is dumb in the sense that it just blindly copies files from source to destination. If you want something that's more intelligent about copying files you'll need to use a tool such as rsync.
$ rsync -avz [email protected]:'$(find /home/rimmer/backups/ -ctime -1)' /home/rimmer/backups/
This will only copy files that are missing or have changed from rimmer.sk's backups directory in the last day (-ctime -1) to your local backup's directory.
-ctime n
File's status was last changed n*24 hours ago. See the comments for
-atime to understand how rounding affects the interpretation of file
status change times.
References