Categories
How to delete a bunch of empty files?
Because of the cron, a bunch of empty files have been created, now the task is to delete them. Tried like this: sudo rm -I /root/mysql.php* gives error -bash: fork: Cannot allocate memory
sudo rm -I /root/mysql.php*
Answer the question
In order to leave comments, you need to log in
find /root/ -name "mysql.php.*" -delete
sudo rm -I /root/mysql.php.140* etc.
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question