0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

更新ファイルのリスト取得

Last updated at Posted at 2021-03-29

基本的なことだと思いますが、苦労したので、備忘録として書きます。
間違っているものなどありましたらご指摘いただけますと幸いです。

ディレクトリ配下の全ファイルの中から、今日更新されたもの、もしくは、今さっき更新されたものの一覧を取得します。

##今日の更新ファイル一覧


find ディレクトリ名 -type f -mtime 0 -ls
ls -lrt ディレクトリ名 `find -type f -mtime 0` 

##10分以内の更新ファイル一覧


find ディレクトリ名 -type f -mmin -10 -ls
find ディレクトリ名 -type f -mmin -10 | xargs -r ls -lrt 

時間を変更するときは、-10のところをいじってください。

-mminの引数 意味
-100  現在から100分以内
+10  10分より前(10分以内の逆)

##注意点
ディレクトリ名を省略した場合、カレントディレクトリ以下の検索になります。
一番上の階層でこのコマンドを入力すると、このサーバ、PCで更新されたすべてのファイルリストを取得できます。

-lrtや、-lsは個人的に見やすくするために使用しているだけなので、適宜変更できます。

0
3
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
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?