I am writing a bash script that will get files from one directory of remote host. Here, I want to get files that were modified after given time.
sftp userme@remote_host_addr:/somedirectoryonremoteserver
> mget
Here, how can I pass the timing to sftp
command to get only files whose modified time is greater than given time.