#!/bin/bash
#find $(/home/postgres/backups/) -type f -mtime +2 -delete
cd /home/postgres/backups
lastfile=$(ls -t | tail -n 1)
rm $lastfile
#find $(/home/postgres/backups/) -type f -mtime +2 -delete
cd /home/postgres/backups
lastfile=$(ls -t | tail -n 1)
rm $lastfile
Комментариев нет:
Отправить комментарий