トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

Top / linux / System Command Examples / find examples / find 2日以内に変更されたファイルを検索する
Last-modified: 2018-02-23 (金) 14:03:50 (1931d)

find 2日以内に変更されたファイルを検索する


  • syntax:
    find ./ -mtime -2
    find ./ -mtime -2 -exec mv {} ./backup \;


  • comment:
    2日よりも前に変更されたファイルを検索する
    exec を使用することで、ヒットした物を、個別に処理可能

  • Example:



    Tag: Linux find

    Goto Top Page

Top / linux / System Command Examples / find examples / find 2日以内に変更されたファイルを検索する