![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to find a date which is 7 days past when given current date | ladtony | Shell Programming and Scripting | 17 | 04-09-2009 05:06 PM |
| date issue-find prevoius date in a patricular format | bsandeep_80 | UNIX for Advanced & Expert Users | 3 | 11-15-2007 08:42 PM |
| Use date command to find last month | Cbish68 | Shell Programming and Scripting | 5 | 08-10-2007 11:32 AM |
| Command to find out user creation date | Crazy_murli | UNIX for Dummies Questions & Answers | 6 | 01-08-2007 09:30 AM |
| How to find Previous date and Coming date | arunava_maity | UNIX for Dummies Questions & Answers | 2 | 05-24-2001 12:41 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
find command: various date ranges
Hi, I have writtena script that will recursivly go into subdirecotries and report out what files there are in there that have not been accessed over various date ranges. I do this using a number of find commands: Code:
find . -path './.snapshot' -prune -o -type f -atime -8 find . -path './.snapshot' -prune -o -type f -atime +7 -atime -32 find . -path './.snapshot' -prune -o -type f -atime +31 -atime -187 find . -path './.snapshot' -prune -o -type f -atime +186 -atime -366 find . -path './.snapshot' -prune -o -type f -atime +365 I know this is highly inefficient - and it takes ages! Any suggestions on what I can do to speed this up? As you can see I am having to ezxclude snapshots and am only interested in file sizes. For inforation, I then pipe this through an awk command to sum the total bytesand number of files. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|