I am executing this command to find certain files in specific directory:
find ./rgs/test/maesXX/master/stdlist -name \*.extract \
-mtime +30 \! -size 0 -exec ls -lrt {} \;
where XX could be any number between 1-100.
Can I use a regex for this purpose? How would I do that? Are there other ways?