On Wed, 21 Jan 2004 21:34:45 +0530 "Amitava Chakraborty" <[EMAIL PROTECTED]> wrote:
> I want to list all the files in a particular directory which are > modified today. > Can you tell me how can I get that ? This one will work but the better way is to do it using find. ls -al | tr -s " " | cut -d " " -f6-7 | grep 'Jan 5' But i dont know how ls will differentiate between Jan 5 2003 and Jan 5 2004. -- G.Vinubalaji MultiTech (()) Software Systems ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
