scp从远程同时copy多个文件到本地

scp如果从本地copy多个文件到远程目录很直观:

scp /localfold1/file1 /localfold2/file2  remoteuser@remotehost:/remotefold/   ,

但要重远程copy多个文件呢? 就是用引号:

scp remoteuser@remotehost:"/remotefold1/file1 /remotefold2/file2" /localfold/ 

这样就可以把远程中的两个文件 同时copy过来