gpt4 book ai didi

linux - Shellscript If 语句返回错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:46:01 26 4
gpt4 key购买 nike

我正在尝试检查文件是否超过 5 分钟,如果是这种情况,我想调用另一个 shell 脚本,它会向我发送邮件。

检查文件.sh:

#!/bin/sh

if [$(( (`date +%s` - `stat -L --format %Y /home/ftp/test.txt`) > (5*60) ))] = 1
then sh ./testmail.sh
fi

错误输出:3: ./check_file.sh: [1]: not found

最佳答案

尝试这样的事情:

if find /home/ftp/test.txt -mmin +5 &>/dev/null; then
<your code>
fi

关于linux - Shellscript If 语句返回错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45400450/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com