2.4k questions

2.4k answers

96.0k users

12 Online Users
1 Member 11 Guest
Online Members
Today Visits : 1766
Yesterday Visits : 2723
Total Visits : 2360099

Categories

Notice

Dear All, These are my answers from Quora and primarily Google; please check the answer and from others sites; the answers are free and without any liability.To make a decision, write down all of the positives and negatives on a piece of paper.Thank you,

Elias Katsaniotis, MSc

Information

Viktoria Katsanioti,

Kaliningrad,

Russia,

matizegr@yahoo.com

0 votes

1 Answer

0 votes

There are some plugins.

But ih you have CLI you can issue a commnad like (source stackoverflow), the commands are in Solaris, Linux, or othe flavour of Unix

First one:

start_date=201105040000

end_date=201105042359

touch -t ${start_date} start

touch -t ${end_date} end

find /you/path -type f -name '*you*pattern*' -newer start ! -newer end -exec ls -s {} \;

Second one: find files modified between 20 and 21 days ago:

find -ctime +20 -ctime -21

finds files modified between 2500 and 2800 minutes ago:

find -cmin +2500 -cmin -2800

by (95.8k points)
...