以下は、ローカルサーバーの私の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
何か助けてください。