2.4k questions

2.4k answers

99.5k users

Categories

0 votes
106 views
in Joomla by (95.8k points)

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)
...