Checking your Ubuntu Version
Related Posts
Find And List All Hidden Files Recursively
Recursively list all hidden files and directories on Linux/Unix The basic syntax is as follows:…
Find and delete files older than 1 week (example)
find /home/users/backup_MyDB -type f -mtime +7 -exec rm {} + Although generally it is wise…