Script needed to delete to the list of files in a directory based on last created & delete them


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script needed to delete to the list of files in a directory based on last created & delete them
# 1  
Old 03-02-2015
Script needed to delete to the list of files in a directory based on last created & delete them

Hi

My directory structure is as below.

Code:
dir1, dir2, dir3

I have the list of files to be deleted in the below path as below.

Code:
/staging/retain_for_2years/Cleanup/log $ ls -lrt
total 0
drwxr-xr-x    2 nobody   nobody          256 Mar 01 16:15 01-MAR-2015_SPDBS2
drwxr-xr-x    2 root     system          256 Mar 01 16:18 01-MAR-2015_DBSRP3
drwxr-xr-x    2 nobody   nobody          256 Mar 01 23:56 01-MAR-2015_DBSRP1
drwxr-xr-x    2 nobody   nobody          256 Mar 02 06:40 02-MAR-2015_DBSRP1

and inside there directories it has files as below - based on directory name.
Code:
home_list_of_files_to_be_deleted.out
db_ist_of_files_to_be_deleted.out
var_ist_of_files_to_be_deleted.out

I want to have a script which can read the content of these files and delete the files inside them and log what was deleted.

Last edited by Scrutinizer; 03-02-2015 at 08:01 AM.. Reason: CODE tags
# 2  
Old 03-02-2015
What have you tried so far?
# 3  
Old 03-02-2015
I've never seen a directory structure like dir1, dir2, dir3. Is it more like
Code:
parent_dir/dir1/dir2/dir3/

or
Code:
parent_dir/dir1/
parent_dir/dir2/
parent_dir/dir3/

or even completely different?
And - what content of which files do you need to read?
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Delete all files created in specific year

I have more than 200K files created in year 2017 under directory having size of 50GB. I want to all these files in one shot. Is there any faster option available with find command to delete all these file ? (6 Replies)
Discussion started by: sp23029
6 Replies

2. Shell Programming and Scripting

SFTP Shell Script Get & Delete && Upload & Delete

Hi All, Do you have any sample script, - auto get file from SFTP remote server and delete file in remove server after downloaded. - only download specify filename - auto upload file from local to SFTP remote server and delete local folder file after uploaded - only upload specify filename ... (3 Replies)
Discussion started by: weesiong
3 Replies

3. UNIX for Advanced & Expert Users

Help with a shell script? List files, delete them and log them

Hello, i'm trying to solve this script. List, one at a time, all files larger than 100K in the /home/username directory tree. Give the user the option to delete or compress the file, then proceed to show the next one. Write to a logfile the names of all deleted files and the deletion times. I... (7 Replies)
Discussion started by: jose2802
7 Replies

4. Shell Programming and Scripting

[Solved] Get files & delete them by shell script

I want to use my script to get any file then delete it once it transfers to my side , I manage to create below script to generate "list" file which contains all file names in "10.10.1.1" then I made "a.out" file which contains the commands that I want to run it on "10.10.1.1" to get & delete the... (2 Replies)
Discussion started by: arm
2 Replies

5. Red Hat

Need Script to ZIP/SAVE & then DELETE Log file & DELETE ZIPS older than 12 months

ENVIROMENT Linux: Fedora Core release 1 (Yarrow) iPlanet: iPlanet-WebServer-Enterprise/6.0SP1 Log Path: /usr/iplanet/servers/https-company/logs I have iPlanet log rotation enabled rotating files on a daily basis. The rotated logs are NOT compressed & are taking up too much space. I... (7 Replies)
Discussion started by: zachs
7 Replies

6. Shell Programming and Scripting

Need to delete large set of files (i.e) close to 100K from a directory based on the input file

Hi all, I need a script to delete a large set of files from a directory under / based on an input file and want to redirect errors into separate file. I have already prepared a list of files in the input file. Kndly help me. Thanks, Prash (36 Replies)
Discussion started by: prash358
36 Replies

7. Shell Programming and Scripting

perl script to check if empty files are created and delete them and run a shell script

I have a local linux machine in which the files are dumped by a remote ubuntu server. If the process in remote server has any problem then empty files are created in local machine. Is there any way using perl script to check if the empty files are being created and delete them and then run a shell... (2 Replies)
Discussion started by: hussa1n
2 Replies

8. Shell Programming and Scripting

Delete files created before specific date.

There is a system logging a huge amount of data and we need to delete some of the older logs .I mean the files that are created before one week from today. Here is a listing of files that are sitting there: /usr/WebSphere/AppServer/logs # ls -l -rw-r--r-- 1 root system 3740694 May... (5 Replies)
Discussion started by: moustafashawky
5 Replies

9. Shell Programming and Scripting

Sheel script to Delete a set of files from a given directory

I have a file <filestodelete> containing names of files to to be deleted from a directory <filesstore>. I want a script file which accptes the <filestodelete> and also the location of the directory(<filestore>) and deletes all files matching. Thanks in Advance.. (3 Replies)
Discussion started by: VardhiniVenkat
3 Replies
Login or Register to Ask a Question