Sponsored Content
Top Forums Shell Programming and Scripting Deleting the contents of a folder older than X hours Post 302296533 by rmoncello on Wednesday 11th of March 2009 09:06:45 AM
Old 03-11-2009
Try adding the -depth option:

Code:
[rick data]$ pwd
/path/to/traveldata/data
[rick data]$ ll
total 12
drwxrwxr-x 2 rick rick 4096 2009-03-11 08:00 2009-03-09
drwxrwxr-x 2 rick rick 4096 2009-03-11 08:00 2009-03-10
drwxrwxr-x 2 rick rick 4096 2009-03-11 08:00 2009-03-11
[rick data]$ cd
[rick ~]$ find /path/to/traveldata/data -depth ! -name data -type d -ctime 0 -exec /bin/rm -Rf "{}" \;
[rick ~]$ cd -
/path/to/traveldata/data
[rick data]$ ls -la
total 8
drwxrwxr-x 2 rick rick 4096 2009-03-11 08:00 .
drwxrwxr-x 3 rick rick 4096 2009-03-11 07:53 ..
[rick data]$

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Finding files older than 2 hours

I want to write a sh script that will find files older than 2 hours and tar them. I've had a look at the find man page but can't see how to do it by hours. Help please. Thanx (1 Reply)
Discussion started by: ianf
1 Replies

2. UNIX for Dummies Questions & Answers

Finding only those files older than 2 hours

I need to write a program that will only remove those files that are older than 2 hours. Is there some variation of find . -mtime ? -name '*' that I can use? Thanks as always for your help. Regards, Dave :) (2 Replies)
Discussion started by: mh53j_fe
2 Replies

3. Shell Programming and Scripting

removing files after 6 hours or older

What is the command to remove files that are generated 6 hours or older? The find and remove tells only how to remove if the file is one day old or more. Appreciate quick reply. Thanks (3 Replies)
Discussion started by: gthokala
3 Replies

4. Solaris

Deleting Files Older than 24 hours

Hi, I am using Solaris Box, I need to delete file(cookies.html) from the path(/usr/temp) which are older than 24 hours(I want in hours, not in days) Can u provide the command for the above query (7 Replies)
Discussion started by: mazhar803
7 Replies

5. AIX

how to find files older than 2 hours

I need help to find files in a directory that are older than 2 hours. Any help would be great. (3 Replies)
Discussion started by: pt14
3 Replies

6. Shell Programming and Scripting

Find files older than 8 hours

I need a script to find files older than 8 hours... I know i can use mmin but the same is not working...the same only support mtime... This is the script i created..but the same is only giving 1 hour old..as I have given dt_H as 1 only...but if i give 8..it can go in -(negative)..how to get the... (5 Replies)
Discussion started by: cotton
5 Replies

7. Shell Programming and Scripting

Deleting files older than 6 hours

Hi All, I am using the below script to find all the files in a folder which are older than 6 hours and delete all those files, but some how I am not getting the required output. find $HOME/Log -type f -name "*.log" -amin +360 -exec rm *.* {} \ can any one please check and let me know... (13 Replies)
Discussion started by: subhasri_2020
13 Replies

8. Shell Programming and Scripting

files older than few hours

Hi All I need to know the command which can be used to list the files which are 3 hours old so that it can be deleted. (3 Replies)
Discussion started by: mskalyani9
3 Replies

9. Shell Programming and Scripting

Deleting Files Older than 1 hours.

How to Deleting Files Older than 1 hours. Base on SunOS. this file gen every 1 min. -rw-r--r-- 1 nobody nobody 4960 Jan 27 02:02 23_201301270201.log -rw-r--r-- 1 nobody amudu 2325 Jan 27 02:03 33_201301270202.log -rw-r--r-- 1 nobody amudu 3255 Jan 27 02:03... (2 Replies)
Discussion started by: ooilinlove
2 Replies

10. Shell Programming and Scripting

Folder contents getting appended as strings while redirecting file contents to a variable

Hi one of the output of the command is as below # sed -n "/CCM-ResourceHealthCheck:/,/---------/{/CCM-ResourceHealthCheck:/d;/---------/d;p;}" Automation.OutputZ$zoneCounter | sed 's/$/<br>/' Resource List : <br> *************************** 1. row ***************************<br> ... (2 Replies)
Discussion started by: vivek d r
2 Replies
zjsdecode(1)						      General Commands Manual						      zjsdecode(1)

NAME
zjsdecode - Decode a ZjStream into human readable form. SYNOPSIS
zjsdecode [options] <zjs-file DESCRIPTION
zjsdecode decodes a ZjStream into human readable form. A ZjStream is the printer langauge used by some Minolta/QMS and HP printers, such as the 2300DL and LJ-1000. More information on Zenographics ZjStream can be found at: http://ddk.zeno.com COMMAND LINE OPTIONS
These are the options that can appear on the command line. -d basename Basename of .pbm file for saving decompressed planes. -r basename Basename of .jbg file for saving raw planes -h Print hex file offsets. -o Print file offsets. -p Don't do 4 byte padding -D level Set Debug level [0]. EXAMPLES
Decode an ZjStream file created by foo2zjs. $ zjsdecode < testpage.zm ZJT_START_DOC, 3 items ZJI_PAGECOUNT, 0 (0x0) ZJI_DMDUPLEX, 1 (0x1) ZJI_QUANTITY, 1 (0x1) ZJT_START_PAGE, 17 items ZJI_0x17, 0 (0x0) ZJI_0x16, 1 (0x1) ZJI_VIDEO_X, 10200 (0x27d8) ZJI_VIDEO_Y, 6600 (0x19c8) ZJI_VIDEO_BPP, 1 (0x1) ZJI_RASTER_X, 10200 (0x27d8) ZJI_RASTER_Y, 6600 (0x19c8) ZJI_OFFSET_X, 0 (0x0) ZJI_OFFSET_Y, 0 (0x0) ZJI_NBIE, 1 (0x1) ZJI_RESOLUTION_X, 1200 (0x4b0) ZJI_RESOLUTION_Y, 600 (0x258) ZJI_DMDEFAULTSOURCE, 7 (0x7) ZJI_DMCOPIES, 1 (0x1) ZJI_DMPAPER, 1 (0x1) ZJI_DMMEDIATYPE, 1 (0x1) ZJI_MINOLTA_PAGE_NUMBER, 1 (0x1) ZJT_JBIG_BIH, 0 items Data: 20 bytes DL = 0, D = 0, P = 1, - = 0, XY = 10200 x 6600 L0 = 128, MX = 16, MY = 0 Order = 3 ILEAVE SMID Options = 92 LRLTWO TPDON TPBON DPON 52 stripes, 0 layers, 1 planes ZJT_JBIG_BID, 0 items Data: 65536 bytes ZJT_JBIG_BID, 0 items Data: 29120 bytes ZJT_END_JBIG, 0 items ZJT_END_PAGE, 0 items ZJT_END_DOC, 0 items FILES
/usr/bin/zjsdecode SEE ALSO
foo2zjs-wrapper(1), foo2zjs(1), jbg2pbm(1) AUTHOR
Rick Richardson <rick.richardson@comcast.net> http://foo2zjs.rkkda.com/
All times are GMT -4. The time now is 03:34 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy