All public logs

Jump to navigation Jump to search

Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 06:14, 20 June 2024 Qljca talk contribs created page Find Command (Created page with "==Find and Delete Files with Specific Extension== <pre> find /var/log -name "*.log" -type f -mtime +30 -delete </pre> ==Find and Delete Files older Than 30 Days== <pre> find /opt/backup -type f -mtime +30 -delete </pre> ==Delete Directory older than 30 days Recursively== <pre> find /var/log -type d -mtime +30 -exec rm -rf {} \; </pre>")