2012年12月4日星期二

scp multiple files - a bash script

#!/bin/bash 
filelist=$(ssh 'echo *' scp_user@scp_host:remotedir/) 
for File in "$filelist" 
do 
scp scp_user@scp_host:remotedir/"$FILE" /home/ugen/ 
done

没有评论:

发表评论