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
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 -->
#
3
(
permalink
)
10-05-2007
devtakh
Registered User
Join Date: Oct 2007
Posts: 34
find command
try this dude!
find /dirname -type f -mtime +1 -exec mv {} backup/ \;
or
find /dirname -type f -mtime +1 | xargs mv backup/
all the best
cheers,
Devaraj Takhellambam
devtakh
View Public Profile
Find all posts by devtakh