Jump to content

Removing files in a loop?


matfish

Recommended Posts

Hi again,

 

I have a script that runs on Cron which backs up my database every night with a filing format of: 2008_09_10.sql

I want to keep the last 30 days and remove everything previously. I was hoping to put this in a script kinda loop thing and run once a week to delete everything prior to the last 30 days.

 

Any ideas?

 

Many thanks

 

 

Link to comment
https://forums.phpfreaks.com/topic/123757-removing-files-in-a-loop/
Share on other sites

  • 4 weeks later...

Hello  :),

 

Alternatively, you can try this

 

rm -rf 2008_08_*.sql

 

the above will delete all sql files of 08th month 8)

 

 

Hi again,

 

I have a script that runs on Cron which backs up my database every night with a filing format of: 2008_09_10.sql

I want to keep the last 30 days and remove everything previously. I was hoping to put this in a script kinda loop thing and run once a week to delete everything prior to the last 30 days.

 

Any ideas?

 

Many thanks

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.