Sponsored Content
Top Forums Shell Programming and Scripting Find and delete files and folders which are n days older from one unix server to another unix server Post 302606642 by sachinkl on Monday 12th of March 2012 10:02:06 AM
Old 03-12-2012
Hey vbe....I need to do it through a unix script.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

delete files and folders older than 3 days

find /basedirectory -type f -mtime +3 >> /tmp/tempfile find /basedirectory -type d -mtime +3 >> /tmp/tempfile mailx -s "List of removed files and folders" myemail@domain.com < /tmp/te mpfile rm /tmp/tempfile find /basedirectory -type f -mtime +3 -exec rm {} \; find /basedirectory -type d... (7 Replies)
Discussion started by: melanie_pfefer
7 Replies

2. Shell Programming and Scripting

Delete files older than 2 days using shell script in Unix

I'm new to shell script.... can any one help... What is the shell script to delete the files older than 2 days ? (3 Replies)
Discussion started by: satishpabba
3 Replies

3. Red Hat

Find files older than 30 days in directories and delete them

Hi, I have dummies questions: My script here can find the files in any directories older than 30 days then it will delete the files but not the directories. I would like to also be able to delete the directories that hold old files more than 30 days not just the files itself. find . -type f... (2 Replies)
Discussion started by: lamoul
2 Replies

4. Shell Programming and Scripting

Delete folders older than 30 days

Dear all, i use incremental backup my data with .zip to my hard drive. what i need is i don't want the old .zip file older than 30 days. how to write a shell script automatically remove my external hard disc zip backup folders older than 30 days? Regards, (2 Replies)
Discussion started by: joneggk
2 Replies

5. Shell Programming and Scripting

How archive the older than 30 day files to another unix server

I need to archive the older than 30 day file to another uinx server.I have wrote the below uinx script. for LOOK_DIR in /TempFiles do for FILE in `find ${LOOK_DIR} -mtime -30 -exec ls {} \;` do echo ${FILE} >> file_list ## This file will have the list of files copied and... (12 Replies)
Discussion started by: murari83.ds
12 Replies

6. Shell Programming and Scripting

Unix shell script to delete files on windows server

Hi experts, can anyone suggest me on the below: how to write a shell script to search and delete files on windows server. -script runs on unix box -it should search for specific files on windows server and delete them periodically. (2 Replies)
Discussion started by: chpradeepch
2 Replies

7. Shell Programming and Scripting

scp files that are 3 days older from remote server-

hello, i am trying to get a list of files to be scped from the remote server by running the below in my local unix server ( note - there is a passwordless connectivity setup made between the local and remote server) and, we use KSH. --- ssh $scp_host "find /a/b/c/*/ -iname "$remote_file"" >... (4 Replies)
Discussion started by: billpeter3010
4 Replies

8. Shell Programming and Scripting

Find command to search and delete files older than 1 days at a desired location

Hello All, Can someone please help me out in creating the find command to search and delete files older than 1 days at a desired location. Thanks in advance for your help. (3 Replies)
Discussion started by: Pandee
3 Replies

9. Shell Programming and Scripting

How to create zip/gz/tar files for if the files are older than particular days in UNIX or Linux?

I need a script file for backup (zip or tar or gz) of old log files in our unix server (causing the space problem). Could you please help me to create the zip or gz files for each log files in current directory and sub-directories also? I found one command which is to create gz file for the... (4 Replies)
Discussion started by: Mallikgm
4 Replies

10. Shell Programming and Scripting

Find files not matching multiple patterns and then delete anything older than 10 days

Hi, I have multiple files in my log folder. e.g: a_m1.log b_1.log c_1.log d_1.log b_2.log c_2.log d_2.log e_m1.log a_m2.log e_m2.log I need to keep latest 10 instances of each file. I can write multiple find commands but looking if it is possible in one line. m file are monthly... (4 Replies)
Discussion started by: wahi80
4 Replies
RESTOREDIRVBE(3)					       MBK LOGICAL FUNCTIONS						  RESTOREDIRVBE(3)

NAME
restoredirvbe - restore connectors directions from behavioral view ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mlo.h" int restoredirvbe(ptfig) lofig_list *ptfig; PARAMETER
ptfig Pointer to a lofig_list DESCRIPTION
The restoredirvbe function read the PORT section of the vhdl behavuoiral view of the figure, restores the externals connectors directions and order them as indicated in the vbe. RETURN VALUE
restoredirvbe returns 1 on success, 0 if there is an error while reading the vbe file, -1 if their is no vbe. ERROR
"*** mbk error *** restoredirvbe : no figure given" The ptfig parameter is NULL. "*** mbk error *** restoredirvbe : figure %s have more connectors than vbe" Number of connetors in vbe and in figure must be identical. If the vbe have more connectors, the getlocon function give an error on the unknown connector. "*** mbk error *** restoredirvbe : cannot read port well!" To restore the connectors directions, the vbe description must have a port well. "*** mbk error *** restoredirvbe : bit_vect neither to nor downto" In a port section of a vbe, the bit vector must have indication of the sens of incrementation. EXAMPLE
#include "mut.h" #include "mlo.h" lofig_list * getgoodlofig(figname, mode) char *figname; char mode; { lofig_list *ptfig; ptfig = getlofig(figname, mode); restoredirvbe(ptfig); return ptfig; } SEE ALSO
mbk(1), lofig(3), locon(3), getlofig(3), BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 RESTOREDIRVBE(3)
All times are GMT -4. The time now is 08:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy