私はこれを働いています:
% cat read.sh
!/bin/sh
file=list.txt
while read line
do
echo "$line"
cut -d' ' -f27 | sed -n '$p' > file2
done < "$file"
% cat list.txt
sftp> #!/bin/sh
sftp>
sftp> cd u/aaa
sftp> ls -lrt x_*.csv
-rwxr-xr-x 0 1001 1001 12274972 May 13 21:07 x_20150501.csv
-rw-r--r-- 0 1001 1001 0 May 13 21:44 x_20150601.csv
-rw-r--r-- 0 1001 1001 0 May 13 21:44 x_20150701.csv
-rw-r--r-- 0 1001 1001 0 May 13 21:44 x_20150801.csv
-rw-r--r-- 0 1001 1001 0 May 13 21:44 x_20150901.csv
-rw-r--r-- 0 1001 1001 0 May 13 21:45 x_20151001.csv
-rw-r--r-- 0 1001 1001 0 May 13 21:45 x_20151101.csv
-rw-r--r-- 0 1001 1001 0 May 13 21:45 x_20151201.csv
% cat file2
x_20151201.csv
最初の質問: 最後の行の最後の項目を読むよりも興味深いものはありますか? Cutとsedの使い方を知っていますか?これはsftpディレクトリリストのリダイレクトです。
2番目の質問: file2に何があっても、sftpバッチファイルから読んで正確なファイルを取得したいと思います。
% cat fetch.sh
#!/bin/sh
cd u/aaa
!sh read.sh
!< file2
get
bye
get
想像できるように、sftpはファイルなしでサービスを提供するのが好きではありません。それでは、sftpサーバーからファイルをインポートするためにfile2をどのように読み取るべきですか?
% sftp -b fetch.sh user@pulse
sftp> #!/bin/sh
sftp>
sftp> cd u/aaa
sftp> !sh read.sh
sftp> #!/bin/sh
sftp> !< file2
x_20151201.csv
sftp> get
You must specify at least one path after a get command.
答え1
すべてのタスクを1つのコマンドにまとめることができます。
sftp user@host:/path/to/file/$(tail -1 file1.txt |tr -s ' ' |cut -d ' ' -f 9)
これにより、現在の作業ディレクトリにファイルが抽出されます。ファイルを別のディレクトリに抽出する必要がある場合は、ターゲットディレクトリをsftpコマンドの次の引数として指定します。