I have the below command to delete all .xml files older than 90 days find . -type f -name '*.xml' -mtime +90 -exec rm {} \\; What will be the command to ...
確定! 回上一頁