Bash循环仅适用于第一次迭代

时间:2017-01-16 09:12:40

标签: bash

我试图通过lfpt将一堆文件上传到ftp服务器。为此,我循环遍历文件并使用文件作为参数调用上载脚本。这仅适用于第一个文件。

以下是代码:

files=$(find "$dir" -maxdepth 1 -name "0025-*.PDF" -newer timestamp)
for file in "$files"
do 
bash upload.sh "$file" ""
stat "$file" >> watchdog.log
done

这里是上传脚本:

#!/bin/bash
echo 'upload of file' "$1" 'will start now'
lftp -e "set ftp:passive-mode true; set ftp:ssl-allow true; set ftp:ssl-force true; set ftp:ssl-protect-data true; set ftp:ssl-protect-list true; set net:timeout 10;
open -u XXX,XXX XXX;
cd '$2';
sleep 2;
put '$1';
bye"
echo "$1" written to folder "$2"

文件路径包含空格,在第一次迭代后,我得到一个未知命令的错误,显示直到空格的路径(例如,Unkown命令'example / test'.;原始路径:example / test 2 / file1.pdf )。我有什么问题?

1 个答案:

答案 0 :(得分:1)

我使用

修复了问题
find "$dir" -maxdepth 1 -name "0025-*.PDF" -newer timestamp -exec bash -c 'upload.sh "$0" ""' {} \;

而不是循环。

(基于对How to loop through file names returned by find?的回答 - 非常感谢fedorqui在他/她的评论中指出这篇文章)