gpt4 book ai didi

file - 需要 bash 脚本来查找(如果存在)小于 7 天的 tar 文件

转载 作者:行者123 更新时间:2023-12-04 06:07:03 26 4
gpt4 key购买 nike

很多人想找到超过 x 天的文件,但就我而言,我需要找到一个小于 7 天的 tar。

  • 日期格式:日期+%m-%d-%Y
  • 该文件可能不存在。如果没有,请从/location/创建 tar。
  • 如果文件存在,将较新的文件从/location/附加到 tar。

  • 如果我能提供更多详细信息,请告诉我。

    谢谢

    最佳答案

    这将打印小于 604800 秒的最旧 tar 文件(如果有):

    find /location/ -name \*.tar -mtime -7 -print0 | xargs -0 ls -rt | head -1

    关于file - 需要 bash 脚本来查找(如果存在)小于 7 天的 tar 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8235470/

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