![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to list files Created in last 2 hrs | rsonakiya | UNIX for Dummies Questions & Answers | 4 | 03-02-2009 07:25 AM |
| List the files without directory path | madankumar | UNIX for Dummies Questions & Answers | 2 | 07-18-2008 04:23 PM |
| How to list all the files which are not generated today | redlotus72 | UNIX for Dummies Questions & Answers | 2 | 10-05-2007 09:27 AM |
| command to list files that are created before some date | csreenivas | SUN Solaris | 3 | 06-27-2007 06:34 PM |
| How to list files with specific created date | Draculla | Filesystems, Disks and Memory | 2 | 05-03-2007 11:45 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hi,
Can any one tell the command to list all the files that are created as of today from all the directories? The Command "ls -ltR" is listing all the files. But I want the list of files that has been created as of today along with the directory path ![]() Thank you in advance. ![]() Regards, Usha. |
|
||||
|
Unix is not windows - it does not have a file creation time. ctime is the last time inode data changed which includes creation. Linux example:
Code:
rm -f dummy yesterday=200808172359 touch -t $yesterday dummy find / -cnewer dummy -type f -print |
|
||||
|
Hi jim,
with the command, ls -ltR|grep 'Aug 18' I am able to get the list of files created as of today from all the sub-directories. But can you please help me how can i get it directory wise? Thank you:-) Usha |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|