Skip to content

Instantly share code, notes, and snippets.

@faridescate
Created May 9, 2018 16:46
Show Gist options
  • Save faridescate/5bfc1059866e188a8c5e20a82d8c26fc to your computer and use it in GitHub Desktop.
Save faridescate/5bfc1059866e188a8c5e20a82d8c26fc to your computer and use it in GitHub Desktop.
Borra archivos con antiguedad mayor a 20 dias
#!/bin/bash
/** Borra archivos con antiguedad mayor a 20 dias **/
sudo find ./ -mindepth 1 -mtime +20 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment