1

I want to delete all files named typhoon.svg from / partition. How to do that via command line?

1 Answers1

2
sudo find / -name "typhoon.svg" -type f -delete

See this post for some more explanations.

Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407