在Linux上将不同扩展名的文件从一台服务器传输到另一台服

时间:2013-09-30 06:38:29

标签: unix ssh sftp scp

以下是本地服务器中InputLocation中的文件

-rw-r----- 1 root root 0 Sep 25 15:03 one.xml
-rw-r----- 1 root root 0 Sep 25 15:03 two.xml
-rw-r----- 1 root root 0 Sep 25 15:03 data.csv
-rw-r----- 1 root root 0 Sep 25 15:03 free.png
-rw-r----- 1 root root 0 Sep 25 15:04 loaded.jpeg

我可以使用以下命令

传输文件
scp ${InputPath}/*.{jpeg,xml} ${user}@${HostName}:$OutputPath

但我试图将extns放在一个变量中,如下所示

FilesExtnsToBeTransfered=jpeg,xml
scp ${InputLocation}/*.{$FilesExtnsToBeTransfered} ${user}@${HostName}:$OutputPath

但我得到以下异常,虽然文件可用

InputLocation/*.{jpeg,xml}: No such file or directory

请帮忙吗?

1 个答案:

答案 0 :(得分:0)

话说:

FilesExtnsToBeTransfered=jpeg,xml
echo {$FilesExtnsToBeTransfered}

会导致{jpeg,xml}大括号扩展无法执行)。

您有两种选择:

  1. (丑陋,不推荐):使用eval

    eval scp ${InputLocation}/*.{$FilesExtnsToBeTransfered} ${user}@${HostName}:$OutputPath

  2. 将所需的文件扩展名放在数组中:

  3. EXTNS=( jpeg xml )
    for i in "${EXTNS[@]}"; do
      scp ${InputLocation}/*.$i ${user}@${HostName}:$OutputPath
    done