#!/bin/sh #備份天數 Days=1; #文件類型 File="txt"; #刪除目錄 FILE_PATH="./"; find ${FILE_PATH} -name "*.${File}" -type f -mtime +${Days} -exec rm -rf {} \;