以下是本地服务器中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
请帮忙吗?
答案 0 :(得分:0)
话说:
FilesExtnsToBeTransfered=jpeg,xml
echo {$FilesExtnsToBeTransfered}
会导致{jpeg,xml}
(大括号扩展无法执行)。
您有两种选择:
(丑陋,不推荐):使用eval
。
eval scp ${InputLocation}/*.{$FilesExtnsToBeTransfered} ${user}@${HostName}:$OutputPath
将所需的文件扩展名放在数组中:
EXTNS=( jpeg xml ) for i in "${EXTNS[@]}"; do scp ${InputLocation}/*.$i ${user}@${HostName}:$OutputPath done