LoginSignup
7
10

More than 5 years have passed since last update.

更新日時でファイルを検索して圧縮する

Posted at

日付を指定して検索

24時間以内に更新されたファイルを検索

find -type f -mtime 0

今日更新されたファイルを検索

find -type f -newermt `date +%F`

48時間以内に更新されたファイルを検索

find -type f -mtime -2

昨日までに更新されたファイルを検索

find -type f -newermt `date +%F -d yesterday`

72時間以内に更新されたファイルを検索

find -type f -mtime -3

3日前までに更新されたファイルを検索

find -type f -newermt `date +%F -d -3days`

2017年1月1日以降に更新されたファイルを検索

find -type f -newermt 2017-01-01

時間を指定して検索

3時間以内に更新されたファイルを検索

find -type f -mmin -180
find -type f -newermt `date +%F -d -3hours`

ファイル名を指定して検索

今日更新された PHP ファイルを検索

find -type f -newermt `date +%F` -name *.php

検索したファイルを直接圧縮する

find -mtime -10 | xargs tar cvf archives.tar.gz
7
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
10