Skip to content

Instantly share code, notes, and snippets.

@Chavao
Created August 20, 2012 13:39
Show Gist options
  • Save Chavao/3404153 to your computer and use it in GitHub Desktop.
Save Chavao/3404153 to your computer and use it in GitHub Desktop.
Elimina os arquivos com mais de 3 dias
#!/bin/bash
#
# Elimina os arquivos com mais de 3 dias;
#
for d in /home/chavao/Desktop/temp; do
find $d -type f -mtime +3 -exec rm --force "{}" \;
#
# Removemos os diretóios vazios
#
find $d/* -type d -print0 | \
sort --zero-terminated --reverse | \
xargs --no-run-if-empty --null --max-args 1 rmdir 2> /dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment