Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know which SSH command should I run to search for any file named error.log inside the whole server and delete them.

Any file named error.log must be deleted.

share|improve this question

closed as off topic by Eugene Mayevski 'EldoS Corp, djechlin, kazanaki, JaredMcAteer, Frank van Puffelen Dec 7 '12 at 16:37

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 2 down vote accepted

From http://www.cyberciti.biz/faq/linux-unix-how-to-find-and-remove-files/

find . -name "error.log" -exec rm -rf {} \;

And also XARGS example from http://www.askdavetaylor.com/how_do_i_delete_all_occurances_of_a_file_in_linux.html

find . -name "error.log" | xargs rm
share|improve this answer
Thank you so much :) – WiredHosting Dec 10 '12 at 18:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.