Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
find files in specific date
Name: dick chaney Date: March 10, 2003 at 18:24:23 Pacific OS: unix sun solaris CPU/Ram: sun
Comment:
dear all, how to find files in the specific date. I usually use this syntax : find -ctime +n / -n ( day)
if I used this file, I still have to count the diference days between today and that specific day. Is there any way to find files in specify exp : find files that was created in august 21, 2001
Summary: Arne: If you don't have maxdepth, try this: # find all on one line find . -type f|awk ' gsub("^./","") '|egrep -v "/" provided you execute find in the current directory, find returns files in the form...
Summary: i have a directory "ABC" with lots of old files and sub directories in it. the issue now is i want to delete away files which are older than 15 days in "ABC" without deleting the files in the sub dire...
Summary: HI I need a unix script to merge two files in a specific manner Eg: File 1 1 2 4 5 File 2 3 5 Final output file looks like 1 2 3 4 5 6 Please respond ASAP.... Thanks in advance ...