Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
329 views
in Technique[技术] by (71.8m points)

unix - FTP - Only want to keep latest 10 files - delete LRU

I have created a shell script to backup my webfiles + database dump, put it into a tar archive and FTP it offsite. Id like to run it X times per week however I only want to keep the latest 10 backups on the FTP site.

How can I do this best? Should I be doing this work on the shell script side, or is there an FTP command to check last modified and admin things that way?

Any advice would be appreciated.

Thanks,

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

One way to do something like this would be to use the day of the week in the filename:

  • backup-mon.tgz
  • backup-tue.tgz
  • etc.

Then, when you backup, you would delete or overwrite the backup file for the current day of the week.

(Of course, this way you only get the latest 7 files, but it's a pretty simple method)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...