prev |
find |
next |
find
has many options for specifying files
rm
on all files that are older than 30
days and prompt to confirm
% find . -ctime +30 -print -ok -exec rm {} \;
% find . -not \( -name "*.txt" -o -name "*.doc" \)
% find /tmp -type l