The UNIX and Linux Forums
>
Top Forums
>
Shell Programming and Scripting
ls latest 4 days or specify days of files in the directory
.
User Name
Remember Me?
Password
google unix.com
Forums
Register
Forum Rules
Links
Albums
FAQ
Members List
Calendar
Search
Today's Posts
Mark Forums Read
Thread
:
ls latest 4 days or specify days of files in the directory
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
#
2
(
permalink
)
01-22-2007
sb008
Registered User
Join Date: Jan 2007
Posts: 384
find . -type f -mtime 2 (exactly 2 days)
find . -type f -mtime +2 (2 days or more)
find . -type f -mtime 3 (exactly 3 days)
find . -type f -mtime +3 (3 days or more)
find . -type f -mtime 4 (exactly 4 days)
find . -type f -mtime +4 (4 days or more)
etc.
sb008
View Public Profile
Find all posts by sb008
Find sb008's past nominations received
Find sb008's present nominations given