# +nの部分はn日以上に更新されたファイル
find /home/postgres/dbbackup -type f -daystart -mtime +n |xargs /bin/rm -f
# -nの部分はn日以内に更新されたファイル
find /home/postgres/dbbackup -type f -daystart -mtime -n |xargs /bin/rm -f
# +nの部分はn日以上に更新されたファイル
find /home/postgres/dbbackup -type f -daystart -mtime +n |xargs /bin/rm -f
# -nの部分はn日以内に更新されたファイル
find /home/postgres/dbbackup -type f -daystart -mtime -n |xargs /bin/rm -f