Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Necesitamos crear un archivo batch (.bat), con el siguiente contenido

 


Code Block
@echo off
forfiles /P "C:\ideasoft\o3bi\exist-db\data\backup" /S /M *.* -d -30 /C  "cmd /c del @file /F"

...

Para Linux

1) Creamos el script (.sh) (BorrarBackupExist-db.sh)

Code Block
#!/bin/bash
find /opt/ideasoft/o3bi/exist-db/data/backup* -mtime +30 -exec rm {} \;

...

Nota: En este ejemplo se va a ejecutar a las 5am

 

 05:00 AM diariamente