bobbybobbertson
Programmer
I want to find all the directories within a directory older than 2 day. However I don't want find to return any directories that start with a dot (.).
The following would work with perl regex's but it seems it doesn't work with find:
find -regex /home/sites/home/web/dl/ph/[^\.] -type d -mtime +2 -exec echo {} \;
any ideas?
tc
The following would work with perl regex's but it seems it doesn't work with find:
find -regex /home/sites/home/web/dl/ph/[^\.] -type d -mtime +2 -exec echo {} \;
any ideas?
tc