Search : in
By :

List new files in Unix/Linux

Last answer on Jan 15, 2009 9:20:00 am GMT diegodr, on Nov 17, 2008 11:34:15 am GMT 
 Report this message to moderators

Hello,

I would like to know if there is a command to list recursively all the files in a directory updated after certain date. Thanks very much for your help.

Cheers

Configuration: Windows XP
Firefox 3.0.4

Best answers for « List new files in Unix/Linux » in :
Print Screen (Windows, Mac OS X and Unix/Linux) Show How to make a Print Screen (Windows, Mac OS X and Unix/Linux) What is a Print Screen? How to make a Print Screen (Windows) How to make a Print Screen (Mac OS X) How to make a Print Screen (Unix/Linux) Screen Capture Softwares What is a...
[Linux]Managing file attributes on ext2 Show[Linux]Managing file attributes on ext2 chattr Attributes List -A -c -I -E lsattr - chattr ==Introduction== The Second Extended Filesystem (ext2) and the Third Extended Filesystem (ext3) contains file attributes that are less...
Associating an application to a file extension ShowAssociating an application to a file extension Display all file extensions Modify an existing file association Create a new file association Manage the list of file extensions Display all file extensions Windows XP by default will mask...
[Linux]Cutting a file into several parts Show[Linux]Cutting a file into several parts Linux is full of utility tools allowing you to manipulate files. There is a very handy tool to split a file into several parts (for example to carry data on low capacity media). The split...
Download File Renamer Basic ShowDo not try any more to rename manually all your files in mass after data transfer. File Renamer BASIC is a powerful utility to rename folders, files, films, images, etc… In fact, you can easily rename folders even the entire subfolders of image or...
Linux - Tree structure of files ShowFile hierarchy under Linux To ensury compatibility and portability, Linux systems comply with the sole FHS (File Hierarchy Standard) standard. The basic hierarchy is as follows: /the root, containing the main directories /bincontains...
UNIX - Files ShowIntroduction to UNIX files In UNIX systems any element is represented in the form of a file. All files are architectured around a single tree structure where the base, called the root, is written "/". File types UNIX systems define different...
UNIX Commands ShowTable of the main UNIX commands Unix Commands Description Options ls lists the content of a directory -a Displays all files, including hidden files -I Displays a...

1

 Don, on Jan 15, 2009 3:01:50 am GMT
  • +3

Check out the find command. You will have to read the man page for "find".

Example: Find and display files last modified les than 90 days ago.

find . -name "*" -mtime -90 -print

Results:

./logout_file
./login_file
./2009cal

Reply to Don