Sponsored Content
Operating Systems Solaris Deleting Files Older than 24 hours Post 302137753 by mazhar803 on Wednesday 26th of September 2007 05:31:48 PM
Old 09-26-2007
Question Delete files without deleting directories

Quote:
Originally Posted by DukeNuke2
work with "find" have a look at the manpage and make the options fit your needs... what means "older than 24 hours"? created, modified or last accesed... you can check all of this with the "find" command!

hth,
DN2
------------------------------------------------------------------------I am able to delete the files from the given path, where files are older than 24 hours.
But it is also going inside the directories of the path and deleting the files older than 24 hours.I want just the files to be deleted from that path, without going inside any directory of that path and deleting files from that directory too

find /tmp/test -type f -mtime +0 -exec rm {} \;

For example: if the test directory has one more directory "/test/test2" and files are there in the test2 directory, but if i issue the above command, it will go inside the test2 and delete files...

I dont want this command to go inside the directory and deleting files
Can you troubleshoot and pass the solution.
 

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. 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

5. Shell Programming and Scripting

Deleting the contents of a folder older than X hours

Every day a new .zip file is uploaded to a folder and at mid-night the zip file is to be extracted into a /data/ folder, inside a date-named folder. # This should extract the contents of a zip file into the /data/ folder into a date based folder /usr/bin/unzip -a -o... (15 Replies)
Discussion started by: worchyld
15 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

if condition for files older then 24 hours in direc

Hi all I have directory /tmp and i have logs are written in it every 18 to 20 hours in date format. now i need write some if condition which can find which files came into /tmp dir with name start from LOG_`date`.log in last 24 hours. can somebody help me on this. (2 Replies)
Discussion started by: tapia
2 Replies

8. 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

9. 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

10. 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
Dancer::Cookie(3pm)					User Contributed Perl Documentation				       Dancer::Cookie(3pm)

NAME
Dancer::Cookie - class representing cookies SYNOPSIS
use Dancer::Cookie; my $cookie = Dancer::Cookie->new( name => $cookie_name, value => $cookie_value ); DESCRIPTION
Dancer::Cookie provides a HTTP cookie object to work with cookies. ATTRIBUTES
name The cookie's name. value The cookie's value. expires The cookie's expiration date. There are several formats. Unix epoch time like 1288817656 to mean "Wed, 03-Nov-2010 20:54:16 GMT" A human readable offset from the current time such as "2 hours". It currently understands... s second seconds sec secs m minute minutes min mins h hr hour hours d day days w week weeks M month months y year years Months and years are currently fixed at 30 and 365 days. This may change. Anything else is used verbatim. domain The cookie's domain. path The cookie's path. secure If true, it instructs the client to only serve the cookie over secure connections such as https. http_only By default, cookies are created with a property, named "HttpOnly", that can be used for security, forcing the cookie to be used only by the server (via HTTP) and not by any JavaScript code. If your cookie is meant to be used by some JavaScript code, set this attribute to 0. METHODS
/SUBROUTINES new Create a new Dancer::Cookie object. You can set any attribute described in the ATTRIBUTES section above. init Runs an expiration test and sets a default path if not set. to_header Creates a proper HTTP cookie header from the content. AUTHOR
Alexis Sukrieh LICENSE AND COPYRIGHT
Copyright 2009-2010 Alexis Sukrieh. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2011-11-30 Dancer::Cookie(3pm)
All times are GMT -4. The time now is 08:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy