How to List all the Same Files and Delete Them unde Second Level?
find . -name ‘install.php’ -type f -print With this centos command, we can get all the same file – install.php, but what we get is the install.php under all subfolders. find . -name ‘install*.php’ -type f -print -exec rm -rf… Read moreHow to List all the Same Files and Delete Them unde Second Level?