Backup files cleanup


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Backup files cleanup
# 1  
Old 09-20-2016
Backup files cleanup

Hello,

I've been able to keep a certain number of backup files with the find -mtime command, but is there a way to add the last 4 Sunday's or any other day?

I checked the man page and forums, but couldn't find anything.

Any help would be appreciated.

Thanks

Last edited by rbatte1; 09-20-2016 at 12:26 PM.. Reason: Added ICODE tags
# 2  
Old 09-20-2016
How are your files organised? If there is a difference in the filename to clearly mark a Sunday file, then it should be easy but you would need to explain a little more what files you have first.

Can you show us the output from an ls -l of the files in question that you want to work with?



Thanks,
Robin
# 3  
Old 09-20-2016
Here's the file list:
Code:
Sep 20 00:50 database_backup_201609192130.zip
Sep 19 00:51 database_backup_201609182130.zip
Sep 18 00:49 database_backup_201609172130.zip
Sep 17 00:51 database_backup_201609162130.zip
Sep 16 00:51 database_backup_201609152130.zip

The file name doesn't "clearly" mark the day, just the date.


Moderator's Comments:
Mod Comment
Please wrap all code, files, input & output/errors in CODE tags.
It makes it far easier to read and preserves multiple spaces for indenting and fixed width data.

Last edited by rbatte1; 09-21-2016 at 06:44 AM.. Reason: Added CODE tags
# 4  
Old 09-20-2016
I think rbatte1 was after a clearer explanation of the intended target files' names. Me, I couldn't tell what you're after when reading both your posts.
# 5  
Old 09-20-2016
I agree with RudiC, your input and list of files do not match and not clear .

Quote:
is there a way to add the last 4 Sunday's
Did you mean to list the files ?

Code:
man find ( search for -printf )
%Tk    File's last modification time in the format specified  by
                     k, which is the same as for %A.
a      locale's abbreviated weekday name (Sun..Sat)

Here is the example, i tried to simulate. Hope it helps.

Create the files:
Code:
touch f1 -t 201609180945
touch f2 -t 201609111045
touch f3 -t 201608281230

List files:
Code:
ls -l
-rw-rw-r-- 1 user1 user1    0 Sep 18 09:45 f1
-rw-rw-r-- 1 user1 user1    0 Sep 11 10:45 f2
-rw-rw-r-- 1 user1 user1    0 Aug 28 12:30 f3
-rw-rw-r-- 1 user1 user1    0 Sep 20 22:33 f4

This prints last 2 sunday files
Code:
find . -type f -printf '%Ta\t%p\n' | grep Sun | tail -2

output:
Code:
Sun    ./f2
Sun    ./f1

Change the weekday name and number as per your need.

If this is not what you want, please provide input files , expected output whether you want to list last four sunday based on date information present in filename or 'file modification time' etc.
# 6  
Old 09-21-2016
Ok just to make it clearer.

The backup happens every night.
The file name shows the date.
I have a script that keeps the last 5 files.
I want it to also keep the last 4 Sundays on top of the last 5 files.

Thanks
# 7  
Old 09-21-2016
There's a rich abundance of backup schemes on the net, and even in these fora you might find some that you could adapt to suit your needs.
Looks like you want to save sort of 5 daily backups and another 4 weekly ones?
How about saving the Sundays' backups in a separate directory and keep the latest 4, resp. delete those more than 4 weeks old?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

How to backup a directory (sub-directories/files) files from one server on to other ?

Hello, Server A: /directory1/ Server B: /Backups/ i wanted to backup contents of /directory1 from "server A" on to "Server B" every 1 hour. If there is any change in (only new/differences) contents on serverA (directory1/) supposed to be backeup on next run. I did used rsync command to... (5 Replies)
Discussion started by: System Admin 77
5 Replies

2. Solaris

Cleanup special files create via device match in a whole root zone

I added in the configuration file of a whole root zone the following device match entries: <device match="/dev/rmt/*"/> <device match="/dev/sg/*"/> after the reboot the zone was able to see all the devices of its global zone, and let under /dev/rmt and /dev/sg the special files created with... (1 Reply)
Discussion started by: hugo_perez
1 Replies

3. Shell Programming and Scripting

Backup Files

Hi, Using the shell script, how can I backup the files. /etc/password, /etc/group , /etc/shadow and more and needs a backup like /etc/password.12Mar12.... (4 Replies)
Discussion started by: gsiva
4 Replies

4. Shell Programming and Scripting

rsync backup mode(--backup) Are there any options to remove backup folders on successful deployment?

Hi Everyone, we are running rsync with --backup mode, Are there any rsync options to remove backup folders on successful deployment? Thanks in adv. (0 Replies)
Discussion started by: MVEERA
0 Replies

5. UNIX for Dummies Questions & Answers

Help needed to backup files.

Hi guys , I m writing a script which will backup a particular folder and its content to a different location. this script needs to be run every weekend. But my problem is how would i apply logic such that the previous backup folder is only deleted if and only if the current backup is... (1 Reply)
Discussion started by: pinga123
1 Replies

6. Solaris

Help with solaris files backup

Hello, I'm Antony, new solaris user. I need to back-up an old solaris disk. Currently I have installed the Open Solaris operating system on my computer and a USB device I tried to read data on a hard drive with an older version of Solaris, when i try to open the device the operating system tells... (11 Replies)
Discussion started by: legoinario_67
11 Replies

7. Shell Programming and Scripting

Backup files

Greetings. I've got a little bit of problem with writing a script. I'd like to write a script that creates backup files (of your computer) once a week, and on the other days of the week it just updates it. Thanks in advance i hope you can help: buddhist p.s.: this would help a lot, because... (1 Reply)
Discussion started by: buddhist
1 Replies

8. UNIX for Dummies Questions & Answers

Cleanup job to remove old files suddenly not working

Hi I have a job that has been running for a while with the following statement to cleanup a directory: find /dbmgtu01/app/myplace/log ! \( -name "dc*" -o -name "sc*" -o -name "ms*" \) -type f -mtime +30 -print -exec rm {} \ ; The directory was recently changed to a mount point, with a symbolic... (2 Replies)
Discussion started by: CAGIRL
2 Replies

9. Shell Programming and Scripting

remove old backup files

# find /home/shantanu -name 'my_stops*' | xargs ls -lt | head -2 The command mentioned above will list the latest 2 files having my_stops in it's name. I want to keep these 2 files. But I want to delete all other files starting with "my_stops" from the current directory. (3 Replies)
Discussion started by: shantanuo
3 Replies

10. Shell Programming and Scripting

SUM of Backup Files

Hello Everyone, I'm struggiling with backup issues and need to sum up sizes of backup files monthly and add the result to the next month's sum recursively. For this i have a well working script that i modified as i showed below and this part gives the sum of the file sizes under working... (2 Replies)
Discussion started by: EAGL€
2 Replies
Login or Register to Ask a Question