1 Answer
You can use the below command to remove .cache files....
# find . -name "*.cache" -exec rm -f {} \;
Here, dot is to represent the current working directory, -name will check for the exact name called .cache and -exec will execute the rm -f command i.e., it will delete the respective files.
Your Answer
x