2

如果修改日期超过 3 天,我想连接到安全的 ftp 服务器并检查目录中的每个文件。

想通过使用 CURL 的 bash 脚本来实现这一点。

这是我尝试过的:

for i in `curl  -l -k --ftp-ssl ftp://"$ftp_username":"$ftp_password"@$ftp_ip:$ftp_port/$ftp_path/ `; do
{

    echo "Checking the modification date of $i";

    if ["$(( $(date +"%s") - $(stat -c "%Y" $i) ))" -gt "259200" ]; then
        echo "modified file found ";
    else
        echo "no modified file found";
    fi
};
done;

我收到此错误:

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0  3266    0     0   6980      0 --:--:-- --:--:-- --:--:--  7525
Checking the modification date of products
stat: cannot stat `products': No such file or directory
./remove_products.sh: line 18: 1373903124 -  : syntax error: operand expected (error token is "-  ")

我究竟做错了什么 ?

任何帮助,将不胜感激

4

1 回答 1

1

改变:

if ["$(( $(date +"%s") - $(stat -c "%Y" $i) ))" -gt "259200" ]; then

至:

if [ "$(( $(date +"%s") - $(stat -c "%Y" $i) ))" -gt "259200" ]; then

周围的空间[是必需的。

于 2013-07-15T15:46:26.063 回答