Find and Delete files older than 5 days in linux. 1.find files older than 5 days ➜ find . -type f -mtime +5 -exec ls -l {} \;.
確定! 回上一頁