找出/tmp下,建立時間超過30天,由dsas這個user所建,而且是SAS開頭的檔案,把它刪除掉。 find /tmp -type f -name 'SAS*' -user dsas -ctime +30 -print -exec rm -f '{}' \;