The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 01-10-2007
blowtorch's Avatar
blowtorch blowtorch is offline Forum Advisor  
Supporter
  
 

Join Date: Dec 2004
Location: Singapore
Posts: 2,350
If you know the date, and are running manually, you can just grep for the date:
ls -l | grep -c "Jan 8"

-Edit
Better:
find . -type f | xargs ls -l | grep -c "Jan 8"
To prevent descent into subdirectories, just search the site for non-recursive find or something like that
-/Edit

Last edited by blowtorch; 01-10-2007 at 07:38 PM..