Author: Gaspar Chilingarov
Date: 10-03-03 13:23
This also will do good job for you!
scp user@remotehost:'`echo foo*bar[0-9]`' ./
note the backtriks passed to remote host - you can run any command with this. like
scp user@remotehost:'`find / -mtime -1`' ./
will copy all files which are modified less than in one day to local side.
But also - take care when using this method. Files with same names, but located in different directories will override each other.
|
|