The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
How to list all the files which are not generated today
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Forum Rules
FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
How to list all the files which are not generated today
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
10-05-2007
lorcan
Registered User
Join Date: May 2007
Posts: 211
Try,
Code:
find . ! -mtime +1 ! -mtime 1
After this use the exec option to move the matching files to your backup dir
lorcan
View Public Profile
Find all posts by lorcan