I want to delete all files named typhoon.svg from / partition. How to do that via command line?
Asked
Active
Viewed 226 times
1 Answers
2
sudo find / -name "typhoon.svg" -type f -delete
See this post for some more explanations.
Radu Rădeanu
- 174,089
- 51
- 332
- 407