user_78361084
user_78361084

Reputation: 3918

Recently modified files....listed by size?

How can I find files/folders that were modified w/in the last 2 days and order them by size?

I have: find . -mtime -2

thx

Upvotes: 0

Views: 2647

Answers (1)

beduin
beduin

Reputation: 8253

This works for regular files:

find .  -mtime -2  -type f| xargs ls -al | sort -n -k 5

This seems to work for folders too:

find .  -mtime -2 | xargs ls -al -d | sort -n -k 5

Upvotes: 2

Related Questions