Potresti provare questo:
ls -r1 $PT_MYSQLBACKUPPATH/ | tail -n +$(($PT_FILESTOKEEP+1)) | xargs rm
ls -r1
elencherà tutti i file in ordine inverso, un file per riga.
tail -n +$number
filtra i primi $numero-1 file dell'elenco (resp. visualizza tutti i file a partire da $numero fino all'ultimo).
xargs
eseguirà rm
con tutti i nomi di file dallo standard input.
Innanzitutto, assicurati di essere nella cartella corretta:
if [ -z $PT_MYSQLBACKUPPATH ]; then
echo "No PT_MYSQLBACKUPPATH set. Exit"
exit 1
fi
cd $PT_MYSQLBACKUPPATH
if [ $? != 0 ]; then
echo "cd to PT_MYSQLBACKUPPATH failed. Exit"
exit 1
fi
Puoi rimuovere i file più vecchi di n, nel tuo caso:
find -mtime +14 -delete
Elimina i file più vecchi di 14 giorni.
Soluzione più complicata (sicuramente non ottimale, però) per la tua domanda:
# Get list of newest files. If newest files are first, use head -n 14 instead of
# head.
files=(`ls | sort | tail -n 14`)
# Loop over all files in this folder
for i in *; do
preserve=0;
#Check whether this file is in files array:
for a in ${files[@]}; do
if [ $i == $a ]; then
preserve=1;
fi;
done;
# If it wasn't, delete it (or in this case, print filename)
if [ $preserve == 0 ]; then
echo $i; # test first, then change this to "rm $i"
fi;
done
Ecco il mio uso dell'ispirazione da questo post:
#!/bin/bash
# Thu Jun 28 13:22:53 CEST 2012
# ${DESTDIR}/files2keep.sh
# Keep the 3 yungest files
# mra at miracleas.dk , deployed on RHEL 6.
InitValues(){
TODAY=`date +"%Y%m%d"`
NOW=`date +"%H%M"`
DESTDIR=/mnt/dbdmp
LOGFILE=?{0}-${TODAY}-${NOW}.log
}
BackupFileMaintenance(){
KEEPFILES=(`ls -lrt ${DESTDIR}/*mysqldump.sql.gz| tail -n 3| awk '{print $9}'`)
for i in `ls -lrt ${DESTDIR}/*mysqldump.sql.gz | awk '{print $9}'`; do
preserve=0
#Check whether this file is in files array:
for a in ${KEEPFILES[@]}; do
if [ $i == $a ]; then
preserve=1
fi
done
if [ $preserve == 0 ]; then
echo $i; # then change this to "rm -f $i" after test
fi
done
}
InitValues
BackupFileMaintenance
exit